forked from solstice/solstice
17 lines
151 B
Plaintext
17 lines
151 B
Plaintext
struct dingus {
|
|
x = 5
|
|
y = "dingus"
|
|
}
|
|
|
|
e = new dingus
|
|
puts e
|
|
puts dingus
|
|
|
|
puts e.x
|
|
println(e.y)
|
|
|
|
e.x = 7
|
|
e.y = "heheheha"
|
|
puts e.x
|
|
println(e.y)
|