forked from ground/ground
15 lines
261 B
Plaintext
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
|