Help for this page

Select Code to Download


  1. or download this
    my @questions = (
        { foo => 'bar' },
        { foo => 'bar' },
        { foo => 'bar' }
    );
    
  2. or download this
    foreach $hashref (@questions){
          my $foo = $hashref->{foo} || "daklfjsdalk";
    }
    
  3. or download this
    for(my $i = 0;$i<=$#questions;$i++){
           my $foo = $questions[$i]->{foo} || "daklfjsdalk";
    }