Add support for syntax blocks.

This commit is contained in:
2024-03-06 09:50:42 -08:00
parent 8dab797c90
commit ac564e6e41
11 changed files with 39 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
x = 1u64;
function mean_x(y) {
base = x + y;
result = base / 2;
result;
};
a = 3;
mean_x_and_a = mean_x(a);
mean_x_and_9 = mean_x(9);
print mean_x_and_a;
print mean_x_and_9;