Created
July 11, 2015 16:28
-
-
Save ssbb/2bdebf17fc1e1182ff4d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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