mirror of
https://github.com/zeroflag/fcl.git
synced 2025-01-12 20:01:25 +01:00
Update README.md
This commit is contained in:
parent
9ae8eea299
commit
e2303a8979
1 changed files with 2 additions and 2 deletions
|
@ -278,7 +278,7 @@ A list is a dynamic, ordered data structed. `[` and `]` are Forth words, so a wh
|
||||||
```
|
```
|
||||||
|
|
||||||
```forth
|
```forth
|
||||||
1 2 3 4 5 <list*> \ creates a new list and loads all items from the stack into it
|
1 2 3 4 5 list* \ creates a new list and loads all items from the stack into it
|
||||||
```
|
```
|
||||||
|
|
||||||
```forth
|
```forth
|
||||||
|
@ -327,7 +327,7 @@ Maps contain key value pairs.
|
||||||
```
|
```
|
||||||
|
|
||||||
```forth
|
```forth
|
||||||
'key1' 'value1' <map*> \ creates a new map and loads all items from the stack into it. There must be an even number of items on the stack.
|
'key1' 'value1' map* \ creates a new map and loads all items from the stack into it. There must be an even number of items on the stack.
|
||||||
```
|
```
|
||||||
|
|
||||||
```forth
|
```forth
|
||||||
|
|
Loading…
Reference in a new issue