literal ( x -- )
published: 29 January 2023 / updated 29 January 2023
vocabulary: forth
Compiles the value x as a literal value.
Example:
: valueReg ( --- n) 
   [ 36 2 * ] literal 
 ; 
    
            
            
                    
    published: 29 January 2023 / updated 29 January 2023
vocabulary: forth
Compiles the value x as a literal value.
: valueReg ( --- n) 
   [ 36 2 * ] literal 
 ;