shithub: femtolisp

Download patch

ref: 47b3876d57432c6e522b4c620accd31408261099
parent: bf5e0d221034acd1b390c8a563d25899765225d7
author: Jeff Bezanson <jeff.bezanson@gmail.com>
date: Fri Sep 23 12:06:44 EDT 2016

update README: `map` is now built in. fixes #26

--- a/README.md
+++ b/README.md
@@ -20,7 +20,7 @@
   * compacting GC
   * and...
 
-...it is fast, ranking among the fastest non-native-compiled Scheme implementations. It achieves this level of speed even though many primitives (like `map`) are written in the language instead of C. femtolisp uses a bytecode compiler and VM, with the compiler written in femtolisp. Bytecode is first-class, can be printed and read, and is "human readable" (the representation is a string of normal low-ASCII characters).
+...it is fast, ranking among the fastest non-native-compiled Scheme implementations. It achieves this level of speed even though many primitives (e.g. `filter` and `for-each`) are written in the language instead of C. femtolisp uses a bytecode compiler and VM, with the compiler written in femtolisp. Bytecode is first-class, can be printed and read, and is "human readable" (the representation is a string of normal low-ASCII characters).
 
 femtolisp is a simple, elegant Scheme dialect. It is a lisp-1 with lexical scope. The core is 12 builtin special forms and 33 builtin functions.