Files
GroundPY/test2.grnd

14 lines
214 B
Plaintext
Raw Normal View History

2025-09-12 06:28:45 +10:00
fun -string !idk
set &var "test of returning strings INSIDE a variable!\n"
return $var
2025-09-10 07:30:58 +10:00
endfun
2025-09-12 06:28:45 +10:00
fun -int !function2
set &intvar 123
return $intvar
endfun
call !idk &var
stdout $var
call !function2 &lol
end $lol