Skip to content

Instantly share code, notes, and snippets.

@gugod
Created July 31, 2017 20:12
Show Gist options
  • Save gugod/c776c7cd605e84ce74d44a215daafc9b to your computer and use it in GitHub Desktop.
Save gugod/c776c7cd605e84ce74d44a215daafc9b to your computer and use it in GitHub Desktop.
use v5.18;
use strict;
use warnings;
my @p;
my @va = ("x", "y", "z");
my @vb = ("p", "q");
for my $va (@va) {
for my $vb (@vb) {
push @p, [$va, $vb];
}
}
say "@$_" for @p;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment