This repository has been archived on 2026-01-21. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ground-old/tests/functions.grnd

15 lines
261 B
Plaintext

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