RosettaCodeData/Task/Time-a-function/Raku/time-a-function.raku

4 lines
57 B
Raku

my $start = now;
(^100000).pick(1000);
say now - $start;