ngrc version works?

This commit is contained in:
2024-04-03 20:55:49 -07:00
parent fab5a230f1
commit 5f2fc7cb34
8 changed files with 119 additions and 9 deletions

View File

@@ -3,6 +3,8 @@ struct Point {
y: u64;
}
v = 1u64;
function getX(p: Point) -> u64
p.x;

View File

@@ -0,0 +1,13 @@
struct Point {
x: u64;
y: u64;
}
test = Point {
x: 1;
y: 2;
};
foo = test.x;
print foo;