-
Notifications
You must be signed in to change notification settings - Fork 35
Values
Pedro Marques edited this page Apr 8, 2016
·
1 revision
A value is a terminal token representing a concrete element. This can be:
- an integer
- a floating point number
- a date time
- a boolean
- a string
- a function
- a parameter
They are represented using numbers.
123456
They are evaluated as Int32.
Use the dot to define the decimal part.
123.456
.123
They are evaluated as Decimal.
You can use the e to define power of ten (10^).
1.22e1
1e2
1e+2
1e-2
.1e-2
1e10
They are evaluated as Double