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