.  ( n -- )

published: 29 January 2023 / updated 29 January 2023

Lire cette page en français

 

vocabulary: forth

Remove the value at the top of the stack and display it as a signed single precision integer.

Example:

1 .                     \ display 1 
1 2 .                   \ display 2  leave 1 on stack 
1 2 + .                 \ display 3  addition 1 and 2, leave nothing on the stack 
6 3  * .                \ display 18 
7 3  * 6 3 * + .        \ display 39 operation (7*3)+(6*3)