jal3/example.nim

9 lines
123 B
Nim
Raw Normal View History

2022-12-07 21:01:59 +01:00
import editor
let e = newEditor("> ", false)
while true:
let text = e.read()
if text == "quit":
break
echo text