blob: 97206dd17d1ce5005360da240617210f844efa6e [file] [log] [blame]
(defun repl ()
(let1 (val (read))
(when val
(print (eval val))
(repl))))
(defun main ()
(print "Welcome to the Bluejay REPL!")
(repl))