User Tools

Site Tools


sd:star_forth_dictionary

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
sd:star_forth_dictionary [2026/03/14 10:25] appledogsd: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.
  
-= . (dot)+== + (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 "print" command. It prints whatever is on the TOS. For example: This is the "print" command. It prints whatever is on the TOS. For example:
  
-    5 .             ( this prints 5. ) +    5 .             ( this prints 5. ) 
-    1 1 + .         ( this prints 1 + 1. )+    1 1 + .         ( this prints 2. ) 
 + 
 +== .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.1773483904.txt.gz · Last modified: by appledog

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki