Help for this page

Select Code to Download


  1. or download this
      DB<27> sub LIST { foo => { x => 42 } }
    
    ...
    
      cont:  say $hsh{foo}{$bar}
    42
    
  2. or download this
    sub func {
       var (\%hsh,\@arr) = @_;
    
    }
    
  3. or download this
    sub func {
       var ($hsh,$arr) = @_;  # ???
    
    }
    
  4. or download this
    sub func {
       var \(%hsh,@arr) = @_;
    
    }