forked from ground/ground
11 lines
163 B
Plaintext
11 lines
163 B
Plaintext
fun -int !dingle -string &silly
|
|
stdlnout "This is inside the function"
|
|
return 10
|
|
endfun
|
|
|
|
stdlnout "This is outside the function"
|
|
|
|
call !dingle &var
|
|
|
|
stdlnout $var
|