Skip to content

Commit 87c4939

Browse files
committed
Add support for nested lists
1 parent 95ff003 commit 87c4939

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DOCS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ For strings, `"hi"` would first become it's ASCII codes, `[104, 105]`, then in b
1818

1919
For numbers, the number is just converted to base 36 then has the decimal place (if present) replaced with `M2`. For example `12.34` would become `["c", "y"]`, then each digit mapped to a move, joined with `M2`, and put inside `M` and `M'` resulting in `M U M2 b' M'`. Note that to make a negative number you need to either multiply it by -1 (`M M'`) or subtract it from zero.
2020

21-
Lists are notated with `E` and `E'` (the equivelent of `[` and `]`) and `E2` for seperating list items. Note that until v1.1 (hopefully) literal multi-dimensional lists will be flattened.
21+
Lists are notated with `E` and `E'` (the equivelent of `[` and `]`) and `E2` for seperating list items.
2222

2323
## Math
2424
`R` - Add

0 commit comments

Comments
 (0)