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