utils/generate-distributions.pl
author Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
Fri, 11 Apr 2008 12:23:19 -0700
changeset 2953 db884a56c5c1
parent 191 411f29b214f0
permissions -rwxr-xr-x
-1 cuts the trailing s if the time postfix is longer than 1 char.

#!/usr/bin/env perl

use Math::Random qw(:all);

@values = random_uniform (10000, 0, 10000000);

foreach $value (@values) {
    print $value . "\n";
}