1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-21 02:27:10 +03:00
mal/rexx/readline.rexx
2017-07-20 12:09:29 +00:00

9 lines
136 B
Rexx

#ifndef __readline__
#define __readline__
readline: procedure /* readline(prompt) */
call charout , arg(1)
return linein()
#endif