Sputter is a simple Lisp Interpreter written in Go. Basically, it's just me having some fun and trying to improve my Go skills. That means you're unlikely to find something you'd want to use in production here. On the other hand, if you want to join in on the fun, you're more than welcome to.
Make sure your GOPATH
is set, then run go get
to retrieve the
package.
go get github.com/kode4food/sputter
Once you've installed the package, you can run it from GOPATH/bin
like so:
sputter somefile.lisp
# or
cat somefile.lisp | sputter
Sputter has a very crude Read-Eval-Print Loop that will be more than happy to start if you call it with no arguments from the terminal:
I just started this thing and it's still pretty fragile, but that will change rapidly. The current built-in forms are:
- Branching:
if
,cond
,do
,when
,when-not
,and
,or
- Numeric:
+
,-
,*
,/
,!=
,=
,<
,<=
,>
,>=
,inf
,-inf
- Numeric Predicates:
inf?
,-inf?
,nan?
- Variables:
def
,let
,ns
,with-ns
,quote
,keyword?
- Functions:
defn
,fn
,lambda
,apply
,apply?
,special-form?
- Macros:
defmacro
,macro?
- Predicates:
eq
,nil?
- Sequences:
cons
,conj
,first
,rest
,seq?
,range
- Lists:
list
,list?
,to-list
- Vectors:
vector
,vector?
,to-vector
- Associative Arrays:
assoc
,assoc?
,to-assoc
- Counted Sequences:
len
,len?
- Indexed Sequences:
nth
,indexed?
- Mapped Sequences:
mapped?
,get
- Comprehensions:
concat
,map
,filter
,reduce
,take
,drop
- Metadata:
meta
,meta?
,with-meta
- Concurrency:
go
,chan
,generate
,future
,promise
,promise?
- Strings:
str
,str!
,str?
- I/O:
print
,println
,pr
,prn
- Operating System:
*env*
,*args*
,*stdout*
,*stderr*
,*stdin*
Documentation for most of these forms may be viewed in the
REPL using the doc
function.
Copyright (c) 2017 Thomas S. Bradford
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.