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

@@ -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);