Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jaw0/jlisp
lisp interpreter
https://github.com/jaw0/jlisp
Last synced: 2 months ago
JSON representation
lisp interpreter
- Host: GitHub
- URL: https://github.com/jaw0/jlisp
- Owner: jaw0
- License: other
- Created: 2014-02-15T18:34:49.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-02-15T18:36:16.000Z (almost 11 years ago)
- Last Synced: 2024-04-24T15:34:42.957Z (9 months ago)
- Language: C
- Size: 219 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: License
Awesome Lists containing this project
- AwesomeInterpreter - jlisp
README
README file for jlisp
=====================jlisp is a lisp interpreter. It is heavily influenced from
the suchlikes of scheme, emacs-lisp, ...It was designed to be easily used as an embedded interpreter
(which is what is was actually developed for)
It is easily extended.blah, blah, blah (see the Describble file for more)
To build:
========I have compiled this under SunOS and NetBSD, but there
ought be no trouble on elsewhats.look at the file src/jlconf.h, adjust if need be.
edit the top level Makefile as appropriate
type:
make
make installtry it out, type:
./jl
send in a bug report to the author:
[email protected]depending on your OS, you may get an error informing
you of a problem with re_comp and re_exec, if this is
the case, you have 3 choices:get the GNU regex.c and regex.h and uncomment the
REGEX line in src/MAKEFILE
or
define the flag NO_REGEXPS in jlconf.h to compile
without regular expression support
or
write your own re_comp and re_execalso, depending on your OS, your sed may complain about
"Output line too long" while creating the help file,
you may ignore these (but be aware that the help file may
be incomplete)