/glisp-shell-demo

Example of interactive glisp shell running in golang program

Primary LanguageGoMIT LicenseMIT

glisp-shell-demo

This is basic example code to demonstrate how you can create an interactive lispy shell by embedding glisp within your golang program.

Usage

$ make
$ ./glisp-shell-demo 
glisp> (+ 1 1)
> 2
glisp> (defn add [a] (+ a 1))
> ()
glisp> (add 5)
> 6
glisp> 

License

MIT