commit 5ec23fca3e25c5a0dee3baaa82802831dc502fec parent d5ba82dc2bbd975cb90b436a0f1164f9fc20e1af Author: Ed van Bruggen <edvb@uw.edu> Date: Thu, 24 Dec 2020 18:31:10 -0800 Separate def doc into its different syntaxes Diffstat:
tib/doc.tsp | | | 6 | ++++-- |
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/tib/doc.tsp b/tib/doc.tsp @@ -42,9 +42,11 @@ "Create anonymous macro") (def "(def var . val)" + "Create new variable with value" + " If value is not given, make variable a self-evaluating symbol" + "" "(def (func . args) . body)" - "Create new variable with value, or create new function if argument list given" - " If value for variable is not given, make it a self-evaluating symbol") + "Create new function with arguments list and body list") (set! "(set! var val)" "change the variable var to val")