View difference between Paste ID: 7kuMJW41 and VV1AqxF7
SHOW: | | - or go back to the newest paste.
1
my %hash;
2
push @{ $hash{tag1} }, 'file1';
3
push @{ $hash{tag1} }, 'file2';
4-
push @{ $hash{tag2} }, 'file3'1;
4+
push @{ $hash{tag2} }, 'file3';
5
my $foo = $hash{tag1};
6
print(Dumper($foo));