4 lines
73 B
Perl
4 lines
73 B
Perl
$x = 1;
|
|
$y = 0;
|
|
eval {$result = $x / $y};
|
|
print "eval says: $@" if $@; |