leo/simple.program

10 lines
89 B
Plaintext
Raw Normal View History

2020-04-16 02:52:17 +03:00
struct Point {
field x
field y
}
2020-04-15 03:50:26 +03:00
2020-04-16 02:52:17 +03:00
Point p = Point {x: 1, y: 0}
p.x = 2
2020-04-15 08:55:38 +03:00
return p