getting closer ...

This commit is contained in:
2024-02-22 13:47:06 -08:00
parent 7edaf747aa
commit 26bd7e90fd
9 changed files with 137 additions and 65 deletions

View File

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