Help for this page

Select Code to Download


  1. or download this
    $VAR1 = {
              'main.html' => {
    ...
                               'raw_url' => 'THIS IS WHAT I WANT'
                             }
    };
    
  2. or download this
    foreach my $g (@gists) {
            my @files = keys(%{$g->{files}});    
    ...
        print $g->{files}->{$file}->{raw_url};
            # ^^ THIS doesn't work!!!
    }