pebblisp/src/examples/repl.pbl

21 lines
429 B
Plaintext
Executable File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/pl
(def repl (fn () (
(prn "pebblisp::> ")
(def input (inp))
(if (= input "q") () (
;(switch input (
; ("clear" (fn () (sys "clear")))
;))
(if (= input "") () (
(if (= input "clear") (sys "clear") (
(def ret (eval input))
(if (iserr ret) (prn "X => ") (prn "Ok => "))
(prnl ret)
(prn "")))))
(repl)
))
)))
(repl)