Gisp 是简单 (非标准) 的 Lisp/Scheme 到 Go 的编译器。
## 包括:
*
基于 Rob Pike [Lexical Scanning in Go](http://cuddle.googlecode.com/hg/talk/lex.html#title-slide) 的Lexer [](http://cuddle.googlecode.com/hg/talk/lex.html#title-slide)
*
简单递归解析器,支持 ints, floats, strings, bools
*
TCO
*
AST generating REPL
### 构建运行
<pre class="brush:shell;toolbar: true; auto-links: false;">> go build && ./gisp
>></pre>
编译文件
<pre class="brush:shell;toolbar: true; auto-links: false;">> ./gisp filename.gsp</pre>
### 函数
<pre class="brush:shell;toolbar: true; auto-links: false;">+, -, *, mod, let, if, ns, def, fn, all pre-existing Go functions</pre>