LINT¶
64-bit signed integer.
Size |
64 bits |
Range |
-9,223,372,036,854,775,808 to 9,223,372,036,854,775,807 |
Default |
0 |
IEC 61131-3 |
Section 2.3.1 |
Support |
Supported |
Literals¶
LINT#42
LINT#-100000000
LINT#16#FFFFFFFF
Example¶
timestamp := LINT#1000000000;
increment := LINT#500000;
next_time := timestamp + increment; (* next_time = 1000500000 *)