This is basic example code to demonstrate how you can create an interactive lispy shell by embedding glisp within your golang program.
$ make
$ ./glisp-shell-demo
glisp> (+ 1 1)
> 2
glisp> (defn add [a] (+ a 1))
> ()
glisp> (add 5)
> 6
glisp>
MIT