mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
9 lines
104 B
ObjectPascal
9 lines
104 B
ObjectPascal
{$overflowchecks on}
|
|
var
|
|
n: SizeUint;
|
|
begin
|
|
n := 14 + random(0);
|
|
n := n - n mod 4;
|
|
writeln(n);
|
|
end.
|