RosettaCodeData/Task/Interactive-programming-repl-/REXX/interactive-programming-repl--1.rexx

15 lines
293 B
Rexx
Raw Permalink Normal View History

2026-02-01 16:33:20 -08:00
-- 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!'
2023-07-01 11:58:00 -04:00
exit