This commit is contained in:
2024-02-22 14:23:41 -08:00
parent 26bd7e90fd
commit 0cc2b4ea9d
2 changed files with 41 additions and 0 deletions

View File

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