16 lines
228 B
Text
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
|