To use this website fully, you first need to accept the use of cookies. By agreeing to the use of cookies you consent to the use of functional cookies. For more information read this page.

Official ZPE/YASS documentationNumber data type

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
Code previewClose
Feedback 👍
Comments are sent via email to me.