Difference between revisions of "Int64"
From SCAR Divi Manual
(Created page with "==Availability== SCAR Divi 3.00 > Current ==Description== Integer is a basic signed type which can hold a 64-bit value or 8-byte value. These values are part of the range [-9...") |
(No difference)
|
Latest revision as of 14:09, 26 November 2015
Contents
[hide]Availability
SCAR Divi 3.00 > Current
Description
Integer is a basic signed type which can hold a 64-bit value or 8-byte value. These values are part of the range [-9223372036854775808, 9223372036854775807].
Example
var Value: Int64; begin Value := 5 + 6; if Value = 11 then WriteLn('5 + 6 = 11') else WriteLn('5 + 6 <> 11'); end.
Output:
5 + 6 = 11