mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-23 10:12:21 +03:00
14 lines
184 B
Plaintext
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 |