mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 20:47:53 +02:00
10 lines
95 B
ObjectPascal
10 lines
95 B
ObjectPascal
{$mode objfpc}
|
|
|
|
{$Q+}
|
|
uses
|
|
Sysutils;
|
|
|
|
begin
|
|
writeln(Int64.MinValue+Int64(Random(0)));
|
|
end.
|