sd:star_forth_dictionary
Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| sd:star_forth_dictionary [2026/03/14 10:24] – created appledog | sd:star_forth_dictionary [2026/03/14 11:49] (current) – appledog | ||
|---|---|---|---|
| Line 3: | Line 3: | ||
| Here is a list of each word that comes standard in Star Forth. Included is a short definition as to its general usage. | Here is a list of each word that comes standard in Star Forth. Included is a short definition as to its general usage. | ||
| - | = . | + | == + (add) |
| + | This adds the two numbers on the top of the stack and pushes the result. | ||
| + | |||
| + | 1 2 + . | ||
| + | |||
| + | This puts a 1 and a 2 on the stack, then adds them and pushes the result. Then, the . (dot) command prints the result, which is 3: | ||
| + | |||
| + | 3 ok | ||
| + | |||
| + | == BYE | ||
| + | This quits the REPL (the Forth environment). | ||
| + | |||
| + | Usage: | ||
| + | |||
| + | BYE | ||
| + | |||
| + | == . (dot) | ||
| This is the " | This is the " | ||
| - | 5 . ( this prints | + | 5 . ( this prints 5. ) |
| - | 1 1 + . ( this prints | + | 1 1 + . ( this prints |
| + | |||
| + | == .N (dotn) | ||
| + | This is the print command, like . (dot) but it does not print a space after numbers. | ||
| ----- | ----- | ||
| //More coming soon!// | //More coming soon!// | ||
sd/star_forth_dictionary.1773483888.txt.gz · Last modified: by appledog
