Files
cground/tests/struct.grnd

18 lines
219 B
Plaintext
Raw Normal View History

2026-01-21 18:41:24 +11:00
struct -point
init &x -int
init &y -int
endstruct
init &mypoint -point
setfield &mypoint &x 53
setfield &mypoint &y 32
getfield $mypoint &x &value
println $value
getfield $mypoint &y &value
println $value