ForthMinus
From OpenSimulator
LibCore
| Word | Stack | Description |
|---|---|---|
| dup | ( n -- n n ) | Duplicates the top item of the stack |
| . * | ( n -- ) | Prints the top item of the stack in console |
| dump * | ( -- ) | Dumps the VM's current status in console |
| swap | ( n1 n2 -- n2 n1) | Swaps the order of the top two items in the stack |
| savestate * | ( n -- ) | Saves the VM's state to file n.fmo |
| words * | ( -- ) | Lists the primitive words loaded to console |
| loadlib | ( n -- ) | Loads the words in n.dll |
| : | Special | Define a user word. The first word following the : in the estack is the name. All words following until ; is the definition of the word |