Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: s/string eval/block eval/

...

Code Block
bgColor#ffcccc
langperl
my ($a, $b) = # initialize
my $answer;
eval qq{ \$answer = $a / $b };
print "The quotient is $answer\n";

...

Code Block
bgColor#ccccff
langperl
my ($a, $b) = # initialize
my $answer;
eval qq{ \$answer = $a / $b };
if ($@) {
  carp $@;
  $answer = 0;
}
print "The quotient is $answer\n";

...