parse tweaks

This commit is contained in:
2024-03-06 14:35:46 -08:00
parent ac564e6e41
commit 6c3fc2de01
4 changed files with 19 additions and 26 deletions

View File

@@ -1,7 +1,7 @@
x = 1;
function add_x(y) x + y;
a = 3;
function add_x_twice(y) add_x(y) + x
function add_x_twice(y) add_x(y) + x;
print x;
result = add_x(a);
print x;

View File

@@ -2,7 +2,7 @@ x = 1u64;
function mean_x(y) {
base = x + y;
result = base / 2;
result;
result
};
a = 3;
mean_x_and_a = mean_x(a);