jal3/example.nim

9 lines
123 B
Nim

import editor
let e = newEditor("> ", false)
while true:
let text = e.read()
if text == "quit":
break
echo text