pascalabcnet/TestSamples/FormatterTests/input/test_long_int_const.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

7 lines
182 B
ObjectPascal

begin
System.Console.WriteLine(2147483647);//Int32
System.Console.WriteLine(9223372036854775807);//Int64
System.Console.WriteLine(18446744073709551615);//UInt64
readln;
end.