add more readme stuff

This commit is contained in:
dtb 2022-12-09 21:05:38 -05:00
parent 35a3fb0d62
commit 6c659ee621
1 changed files with 5 additions and 3 deletions

View File

@ -16,7 +16,9 @@ Public domain. 2022 DTB.
## true(1)
```
^ ; initialize hand to 0
; initialize hand to 0
^
; set the chart pointer to 0 - this destroys the chart
; and the program exits with the value of the hand
*
@ -24,8 +26,8 @@ Public domain. 2022 DTB.
## Hello world:
```
; the <.> construct uses '<' to store the next value literally into state,
; does so, and uses '>' to output state literally
; the <.> construct uses '<' to literally 'palm' the next value
; (store into hand), does so, and uses '>' to 'toss' (output hand's value)
<H><e><l><l><o><,>< ><w><o><r><l><d><!><
>^*
```