├── .elpaignore ├── .gitignore ├── README.md └── sotlisp.el /.elpaignore: -------------------------------------------------------------------------------- 1 | .travis.yml 2 | .gitignore 3 | Makefile 4 | test/ 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malabarba/speed-of-thought-lisp/HEAD/README.md -------------------------------------------------------------------------------- /sotlisp.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Malabarba/speed-of-thought-lisp/HEAD/sotlisp.el --------------------------------------------------------------------------------