Help for this page

Select Code to Download


  1. or download this
    $aa = 4;
    $bb = 0;
    ...
    { print "Wrong = Divide by Zero\n"; }
    else
    { print "No Exception = Continue your code here\n"; }
    
  2. or download this
    eval { $cc = 4/0; };
    
    ...
    { print "Wrong = Divide by Zero\n"; }
    else
    { print "No Exception = Continue your code here\n"; }