q/examples/point/point.q

11 lines
No EOL
88 B
Text

struct Point {
x Int
y Int
}
main() {
p := new(Point)
p.x = 4
p.y = 2
delete(p)
}