Feat: documentation, UI/UX
This commit is contained in:
@@ -89,7 +89,7 @@ The fix is simple: make sure you push enough values before calling a word. Check
|
||||
* **Leftover values** are the opposite problem: values remain on the stack after your script finishes. This is less critical but indicates sloppy code. If your script leaves unused values behind, you probably made a mistake somewhere.
|
||||
|
||||
```forth
|
||||
3 4 5 + . ;; plays a sound, but 3 is still on the stack
|
||||
3 4 5 + ;; 3 is still on the stack, unconsumed
|
||||
```
|
||||
|
||||
The `3` was never used. Either it should not be there, or you forgot a word that consumes it.
|
||||
|
||||
Reference in New Issue
Block a user