Feat: add slicing words

This commit is contained in:
2026-02-28 02:37:09 +01:00
parent 511726b65b
commit 7ae3f255b0
6 changed files with 46 additions and 13 deletions

View File

@@ -63,12 +63,12 @@ Reads naturally: "c3 or c4, depending on the coin."
tri s c4 note 0.2 decay . ;; loud during fills, quiet otherwise
```
## pick
## select
Choose the nth option from a list of quotations:
```forth
{ c4 } { e4 } { g4 } { b4 } iter 4 mod pick
{ c4 } { e4 } { g4 } { b4 } iter 4 mod select
note sine s 0.5 decay .
```