Help for this page

Select Code to Download


  1. or download this
      $var_href = { a => 1 };
    
  2. or download this
      $var_aref = [ 1, 2, 3];
    
  3. or download this
    $var = [ 1, 2, 3 ];
    
  4. or download this
    $var_aref = [ 1, 2, 3 ];
    
  5. or download this
    my $var;
    
  6. or download this
    my $var_aref;
    
  7. or download this
    my @array = $var->@*;
    
  8. or download this
    my $var->@;
    
  9. or download this
    my $var;
    
  10. or download this
    $var->@  = 12;
    
  11. or download this
    $var->@ = [ 12 ];