Skip to content

Instantly share code, notes, and snippets.

@pmichaud
Created June 27, 2012 17:22
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 pmichaud/3005523 to your computer and use it in GitHub Desktop.
Save pmichaud/3005523 to your computer and use it in GitHub Desktop.
pmichaud@kiwi:~/p6/rakudo$ cat z
my @z = 1,4;
my $rop = &infix:<..>;
say $rop(|@z).perl;
my @zip := gather { my $r := $rop(|@z); say $r.perl; take $r; };
say @zip.perl;
pmichaud@kiwi:~/p6/rakudo$ ./perl6 z
1..4
1..4
(1, 2, 3, 4).list
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment