perl code:
my %config = ( randValue => int(rand(10)), ); print $config{ randValue }."\n"; print $config{ randValue }."\n";
will produce:
8 8
Is it possible to get different values ββeach time? (do int(rand(10)) every time $config{ randValue } )
source share