1
0
mirror of https://github.com/dschmenk/PLASMA.git synced 2025-08-09 01:25:00 +00:00

Formatting documentation

This commit is contained in:
David Schmenk
2024-07-19 17:49:56 -07:00
parent bbfb61f736
commit 3dd9bd8d0f

View File

@@ -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 - Bit-wise logic operations on 32 bit integers
- Hexadecimal input/output - Hexadecimal input/output
Thes DRAWL implementation comes with the follwoing built-in: The DRAWL implementation comes with the follwoing built-in:
### Constants ### Constants
- T = True - T = True
@@ -35,9 +35,9 @@ Thes DRAWL implementation comes with the follwoing built-in:
### Function types ### Function types
- LAMBDA - LAMBDA(...)
- FUNARG - FUNARG() = List constructed by FUNCTION()
- FUNCTION - FUNCTION()
### Predicates ### Predicates
@@ -53,7 +53,7 @@ Thes DRAWL implementation comes with the follwoing built-in:
- SET - SET
- QUOTE() - QUOTE()
- ARRAY - ARRAY()
- TRACE() = Turn tracing on/off - TRACE() = Turn tracing on/off
- GC() = Run garbage collector and return free memory amount - GC() = Run garbage collector and return free memory amount
- QUIT() = Exit REPL - QUIT() = Exit REPL
@@ -93,23 +93,23 @@ Thes DRAWL implementation comes with the follwoing built-in:
### Program feature ### Program feature
- PROG - PROG() = Algol like programming in LISP
- GO() - GO() = Goto label inside PROG
- RETURN() - RETURN() = Return from PROG with value
### Numbers ### Numbers
- +() - +(...)
- -() - -()
- '\*'() - \*()
- /() - /()
- REM() - REM()
- NEG() - NEG()
- ABS() - ABS()
- >() - >()
- <() - <()
- MIN() - MIN(...)
- MAX() - MAX(...)
### Integers ### Integers