Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

Created August 9, 2017 00:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/efb38a09d136ac5699003832b0f14cd3 to your computer and use it in GitHub Desktop.
Save anonymous/efb38a09d136ac5699003832b0f14cd3 to your computer and use it in GitHub Desktop.
use v6;
my @a = ^100;
my @b = ^100;
for @a.race(batch => 10, degree => 4) -> $a {
for @b.race(batch => 10, degree => 4) -> $b {
say $a;
say $b;
}
}
say now - INIT now;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment