Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    }
    
    Dump \@questions;
    
  2. or download this
    $ARRAY1 = [
                'answer',
    ...
                'answer',
                'second'
              ];
    
  3. or download this
    my @questions;
    
    ...
    }
    
    Dump \@questions;
    
  4. or download this
    $ARRAY1 = [
                { answer => 'first' },
                { answer => 'second' }
              ];