leo/simple.program
2020-04-14 22:55:38 -07:00

14 lines
184 B
Plaintext

struct Point {
field x
field y
}
Point p = Point {x: 1, y: 0}
//bool[2] a = [true, false]
//bool[2] b = [true; 2]
//field[4] c = [1, 2, 3, 4]
//field[3] d = [1; 3]
return p