Files
GroundPY/test2.grnd

17 lines
195 B
Plaintext
Raw Normal View History

2025-09-13 07:08:11 +10:00
fun -bool !greater -int &x -int &y
greater $x $y &x
return $x
2025-09-10 07:30:58 +10:00
endfun
pusharg 1
2025-09-13 07:08:11 +10:00
pusharg 3
call !greater &bigger
if $bigger %yes
jump %no
@yes
stdout "yep!\n"
end 0
@no
stdout "nope...\n"
end 0