as: Constants

1 
1 3.6 Constants
1 =============
1 
1 A constant is a number, written so that its value is known by
1 inspection, without knowing any context.  Like this:
1      .byte  74, 0112, 092, 0x4A, 0X4a, 'J, '\J # All the same value.
1      .ascii "Ring the bell\7"                  # A string constant.
1      .octa  0x123456789abcdef0123456789ABCDEF0 # A bignum.
1      .float 0f-314159265358979323846264338327\
1      95028841971.693993751E-40                 # - pi, a flonum.
1 

Menu