RosettaCodeData/Task/Interactive-programming-repl-/REXX/interactive-programming-repl--2.rexx
2026-02-01 16:33:20 -08:00

23 lines
369 B
Rexx

-- 12 Sep 2025
include Setting
say 'INTERACTIVE PROGRAMMING'
say version
say
say 'Type source code at the REXX prompt, followed by Enter.'
say 'Just Enter or command ''exit'' leaves the program.'
say
IgnoreError16:
include Setting
do until command = ''
call Charout, 'REXX '
parse pull command
interpret command
say
end
say 'Goodbye!'
exit
include Math