Int

Integer data type for whole numbers

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Type

Quick Summary

Integer data type for whole numbers

Technical Exegesis...

Integer data type for whole numbers. Used in variable declarations to specify an integer type. Stores whole numbers without decimal points, typically 32-bit signed integers. Range is approximately -2.1 billion to +2.1 billion. More memory efficient than Double when decimal precision isn't needed. Used with Local, Global, Const, Field, or function parameters/returns.

Example

Example.bam
; No example implemented yet