The Number data type is one of the simplest primitive types in ZPE. It is represented in the underlying language as 64 bit integer or a 64 double precision floating point number.
The Number data type can contain numbers that are whole numbers e.g. 64 or real numbers for example 64.5.
YASS
$n1 = 50.3 $n2 = 33E5 //Using TYPO (version 1.9.7+) declare n3 as number = 39523 declare n4 as number = 3.14E45
Comments