Help for this page

Select Code to Download


  1. or download this
    sub2( sub1() ) ;
    
  2. or download this
    { # minimal scope for @temp
       my @temp = sub1() ;
       sub2 ( \@temp ) ;
    } # end of local scope
    
  3. or download this
    sub2( some_code( sub1() )  )