THE ADD FUNCTION COMPILES!!!!!

This commit is contained in:
SpookyDervish
2025-09-10 20:45:22 +10:00
parent a23bcf7823
commit 2ce71e7abb
5 changed files with 90 additions and 44 deletions

View File

@@ -1,8 +1,9 @@
fun -int !test -int &arg1
stdout "this was called by a function!!!!\n"
return $arg1
fun -int !add -int &x -int &y
add $x $y &x
return $x
endfun
pusharg 115
call !test &var
pusharg 2
pusharg 3
call !add &var
end $var