long.bmx 263 B

123456789
  1. Rem
  2. Long is a signed 64 bit integer BlitzMax primitive type.
  3. End Rem
  4. Const MAXLONG:Long=$7fffffffffffffff:Long
  5. Const MINLONG:Long=$8000000000000000:Long
  6. Print "A long can have the maximum value of:"+MAXLONG
  7. Print "A long can have the minimum value of:"+MINLONG