From 3dd9bd8d0f0f84c7d97840f25d96d26bb371a608 Mon Sep 17 00:00:00 2001 From: David Schmenk Date: Fri, 19 Jul 2024 17:49:56 -0700 Subject: [PATCH] Formatting documentation --- doc/DRAWL.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/doc/DRAWL.md b/doc/DRAWL.md index c8dee36..5d7ddbf 100644 --- a/doc/DRAWL.md +++ b/doc/DRAWL.md @@ -21,7 +21,7 @@ However, the code is partitioned to allow for easy extension so some of these mi - Bit-wise logic operations on 32 bit integers - Hexadecimal input/output -Thes DRAWL implementation comes with the follwoing built-in: +The DRAWL implementation comes with the follwoing built-in: ### Constants - T = True @@ -35,9 +35,9 @@ Thes DRAWL implementation comes with the follwoing built-in: ### Function types -- LAMBDA -- FUNARG -- FUNCTION +- LAMBDA(...) +- FUNARG() = List constructed by FUNCTION() +- FUNCTION() ### Predicates @@ -53,7 +53,7 @@ Thes DRAWL implementation comes with the follwoing built-in: - SET - QUOTE() -- ARRAY +- ARRAY() - TRACE() = Turn tracing on/off - GC() = Run garbage collector and return free memory amount - QUIT() = Exit REPL @@ -93,23 +93,23 @@ Thes DRAWL implementation comes with the follwoing built-in: ### Program feature -- PROG -- GO() -- RETURN() +- PROG() = Algol like programming in LISP +- GO() = Goto label inside PROG +- RETURN() = Return from PROG with value ### Numbers -- +() +- +(...) - -() -- '\*'() +- \*() - /() - REM() - NEG() - ABS() - >() - <() -- MIN() -- MAX() +- MIN(...) +- MAX(...) ### Integers