Advertisement
Guest User

Untitled

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