Help for this page

Select Code to Download


  1. or download this
    my %comments;
    ...
    push @{$comments{$post_url}}, $comment;
    
  2. or download this
    for my $c (@{$comments{$post_url}}) {
        print "$c\n";
    }