Help for this page

Select Code to Download


  1. or download this
    @a = foo(); sub foo { return(undef); }
    
  2. or download this
    %h = foo(); sub foo { return(undef); }
    
  3. or download this
      eval {
        my @a = foo();
        # if I'm here, then foo() succeeded. at least, it didn't throw an 
    +error.
      };