Skip to content

ktravis/sigmo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sigmo

An interpreted lisp, written in Go.

All of the basic lisp features you would expected, and a few extra:

  • namespaces (namespace test ...)
  • importing files (import core/math)
  • for loop construct
  • errors and "guards" (think try/except) (guard (error "help"))
  • "real" macros
  • hashmap values { "a" 1 }
  • value expansions (mylist...)
  • type hints for functions (defn onlyints (a#int) (println 'a was an int'))

See examples for more!

install #######

On linux: (requires package libreadline-dev)

go get github.com/ktravis/sigmo

build

go build ./cmd/sigmo

run

./sigmo                   # cli
./sigmo test.mo           # run a file
./sigmo -c '(print "hi")' # run a single command
./sigmo -i test.mo        # run a file, drop into cli with context

Releases

No releases published

Packages

No packages published

Languages