sub repeat (&f, $n) { f() xx $n }; sub example { say rand } repeat(&example, 3);
0.435249779778396 0.647701200726486 0.279289335968417
Notes on the xx operator:
xx
General notes: