Files
highground-fork/tests/struct.sols

19 lines
159 B
Plaintext
Raw Normal View History

use io
2026-01-25 17:40:07 +11:00
struct dingus {
x = 5
y = "dingus"
2026-01-25 17:40:07 +11:00
}
e = new dingus
puts e
puts dingus
2026-01-27 21:12:09 +11:00
puts e.x
2026-01-27 21:30:50 +11:00
println(e.y)
2026-01-28 14:56:36 +11:00
e.x = 7
e.y = "heheheha"
puts e.x
println(e.y)