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

14 lines
293 B
Rexx

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