Go to the first, previous, next, last section, table of contents.


Integers

On 32-bit machines, Muq muf supports 31-bit signed integers, with the usual decimal syntax:

123
-412

(The "missing" bit is used internally to distinguish integer values from, for example, float and character values.)

Overflow is currently ignored, but code should not be written to depend on this: It is possible that future versions of Muq will implement arbitrary-precision integer arithmetic.


Go to the first, previous, next, last section, table of contents.