Go to file
Lassi Kortela 5ced8d91f6 Store boot image inside main executable
Previously the boot image was kept in the separate file "flisp.boot".
This caused all kinds of problems, as bootstrapping is wont to do. The
biggest problem was finding a portable and convenient pathname for it.

Instead of dealing with all that stuff about how to find the file,
just store the image in a huge C string constant that goes into the
main executable. This necessitates adding a C-string hex dumper into
the Lisp system, and making build.sh slightly more complicated, but
that's a small price to pay for not having to carry a separate file
everywhere we go. Also, flmain.c is a lot simpler now and we don't
have to play around with symlinks.
2019-08-13 23:07:44 +03:00
c Store boot image inside main executable 2019-08-13 23:07:44 +03:00
scheme-boot Store boot image inside main executable 2019-08-13 23:07:44 +03:00
scheme-core Store boot image inside main executable 2019-08-13 23:07:44 +03:00
scheme-examples Start changing all instances of 0x to #x 2019-08-10 15:51:43 +03:00
scheme-lib Clean up whitespace 2019-08-09 17:25:13 +03:00
scheme-tests Start changing all instances of 0x to #x 2019-08-10 15:51:43 +03:00
scripts Store boot image inside main executable 2019-08-13 23:07:44 +03:00
.clang-format Change some more clang-format settings to my liking 2019-08-09 13:59:27 +03:00
.editorconfig Add .editorconfig file to match clang-format 2019-08-09 14:03:13 +03:00
.gitignore Consolidate all Lisp files into scheme-* with .scm extension 2019-08-09 15:21:56 +03:00
.mailmap Add .mailmap file for Git 2019-08-08 18:12:32 +03:00
LICENSE Update copyright statement in LICENSE file 2019-08-09 18:10:54 +03:00
README.adoc Link to FemtoLisp from readme 2019-08-10 12:32:04 +03:00

README.adoc

= Up Scheme

Small scripting Scheme emphasizing portability and stability.

Based on the excellent https://github.com/JeffBezanson/femtolisp/[FemtoLisp]
interpreter by Jeff Bezanson.

More info soon.