-Message d'origine-
> De : fpc-pascal-boun...@lists.freepascal.org [mailto:fpc-pascal-
> boun...@lists.freepascal.org] De la part de Tony
> Envoyé : samedi 26 novembre 2016 16:26
> À : FPC-Pascal users discussions
> Objet : [fpc-pascal] Repeat result in random
>
> Here is
Here is a short program to print 10 random numbers:
program testrandom;
var
i: Integer;
begin
Randomize;
for i := 1 to 10 do
WriteLn(Random);
end.
If I compile and run this program using FPC 3.0.0 on Ubuntu 16.04
x86_64 I get the following:
$ /usr/lib/fpc/3.0.0/ppcx64 testrandom