]> gitweb.factorcode.org Git - factor.git/commitdiff
Adding some more documentation to extra/lisp
authorJames Cash <james.nvc@gmail.com>
Fri, 31 Oct 2008 00:28:55 +0000 (20:28 -0400)
committerJames Cash <james.nvc@gmail.com>
Thu, 6 Nov 2008 05:20:51 +0000 (00:20 -0500)
extra/lisp/lisp-docs.factor

index 149f22864e2f9ea5a56ce83379f2bee59a7e038e..a4b0372f16dc38178a517c5af049b39f0779a273 100644 (file)
@@ -1,5 +1,12 @@
 IN: lisp
 USING: help.markup help.syntax ;
+HELP: <LISP
+{ $description "parsing word which converts the lisp code between <LISP and LISP> into factor quotations and calls it" }
+{ $ see-also lisp-string>factor }
+
+HELP: lisp-string>factor
+{ $values { "str"  "a string of lisp code" } { "quot" "the quotation the lisp compiles into" } }
+{ $description "Turns a string of lisp into a factor quotation" }
 
 ARTICLE: "lisp" "Lisp in Factor"
 "This is a simple implementation of a Lisp dialect, which somewhat resembles Scheme." $nl