mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-23 10:12:21 +03:00
10 lines
89 B
Plaintext
10 lines
89 B
Plaintext
struct Point {
|
|
field x
|
|
field y
|
|
}
|
|
|
|
Point p = Point {x: 1, y: 0}
|
|
|
|
p.x = 2
|
|
|
|
return p |