Advertisement
Guest User

Untitled

a guest
Jan 8th, 2020
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.15 KB | None | 0 0
  1. my %hash;
  2. push @{ $hash{tag1} }, 'file1';
  3. push @{ $hash{tag1} }, 'file2';
  4. push @{ $hash{tag2} }, 'file3'1;
  5. my $foo = $hash{tag1};
  6. print(Dumper($foo));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement