Files
ngr/examples/basic/broken0003.ngr
2024-04-03 20:55:49 -07:00

13 lines
106 B
Plaintext

struct Point {
x: u64;
y: u64;
}
test = Point {
x: 1;
y: 2;
};
foo = test.x;
print foo;