@ ( addr -- n )
published: 30 January 2023 / updated 30 January 2023
vocabulary: forth
Retrieves the integer value n stored at address addr.
Example:
variable SCORE
36 SCORE !
1 SCORE +!
SCORE @ . \ display 37
published: 30 January 2023 / updated 30 January 2023
vocabulary: forth
Retrieves the integer value n stored at address addr.
variable SCORE
36 SCORE !
1 SCORE +!
SCORE @ . \ display 37