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