Skip to content

Instantly share code, notes, and snippets.

@ssbb
Created July 11, 2015 16:28
Show Gist options
  • Save ssbb/2bdebf17fc1e1182ff4d to your computer and use it in GitHub Desktop.
Save ssbb/2bdebf17fc1e1182ff4d to your computer and use it in GitHub Desktop.
my $thisName = "myname";
my $thisPass = "mypassword";
my @series = ();
my %thisData = (login => $thisName, pass => $thisPass);
push(@series, \%thisData);
foreach my $index (0 .. $#series) {
print $series[$index]{'pass'};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment