Help for this page

Select Code to Download


  1. or download this
    sub foo { 5/0; }
    print "Before foo\n";
    ...
    
    # output
    Illegal division by zero at ...
    
  2. or download this
    sub foo { 5/$_[0]; }
    print "Before foo\n";
    ...
    Before foo
    Oops!
    Going onto other things