mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-26 19:11:50 +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 |