mirror of
https://github.com/kanaka/mal.git
synced 2024-11-11 00:52:44 +03:00
9 lines
136 B
Rexx
9 lines
136 B
Rexx
#ifndef __readline__
|
|
#define __readline__
|
|
|
|
readline: procedure /* readline(prompt) */
|
|
call charout , arg(1)
|
|
return linein()
|
|
|
|
#endif
|