dbltw/test.dbl
2020-05-13 19:08:25 -05:00

16 lines
228 B
Text

; Function constants (provided by RPG Engine developer)
define print "do 0"
print "Count is: "
export count 5
goto loop
display:
print count " "
return
>loop:
subtract count 1
call display
if count > 0 loop
end