Function arguments, start of scoping

This commit is contained in:
2025-08-22 13:52:26 +10:00
parent 50d83aa228
commit f7f3972248
2 changed files with 95 additions and 30 deletions

View File

@@ -1,10 +1,14 @@
fun -int !dingle -string &silly
stdlnout "This is inside the function"
stdout "The function argument is "
stdlnout $silly
return 10
endfun
stdlnout "This is outside the function"
pusharg "heheheha"
call !dingle &var
stdout "Function returned "
stdlnout $var