pebblisp/src/examples/repl.pbl

13 lines
172 B
Plaintext
Executable File

#!/usr/bin/pl
(def repl (fn (_) (
(prn "pebblisp::> ")
(def input (inp 0))
(if (= input "q") () (
(prn (eval input))
(pch 10)
(repl 0)
))
)))
(repl 0)