File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ There is no installation to speak of; just grab the file and compile it with you
1111Here's how you can compile S4IOF on a unix box:
1212
1313```
14- gcc -o s4iof -Wall - O3 -DNDEBUG s4iof.c
14+ gcc -o s4iof -O3 -DNDEBUG s4iof.c -lm
1515```
1616
1717Please note that some compilers may issue hundreds of warnings; we recommend to add ` -Wno-parentheses-equality ` for
@@ -29,13 +29,10 @@ S4IOF is true to basic Scheme principles -- it features precise garbage collecto
2929
3030 * hygienic macro facilities (` define-syntax ` & friends) are not implemented
3131 * there is a simple ` define-macro ` facility for S-expression rewriting
32- * ` read ` and ` string->symbol ` are case-sensitive
33- * ` eval ` is single-argument; environment functions are not implemented
32+ * single-argument ` eval ` is available
3433 * fixnums are limited to 24 bits, flonums are doubles
3534 * no support for bignums/rational/complex numbers
36- * ` max ` and ` min ` do not preserve inexactness
3735 * some run-time errors such as zero division and fixnum overflows trigger asserts in C code unless ` NDEBUG ` is defined during compilation
38- * ` transcript-on ` and ` transcript-off ` are not implemented
3936
4037S4IOF supports some popular extensions defined in other standards and libraries:
4138
You can’t perform that action at this time.
0 commit comments