Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: shortened CS

...

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

...

Recommendation

Severity

Likelihood

Remediation Cost

Priority

Level

EXP31-PL

Low

Probable

Medium

P4

L3

Related Guidelines

Bibliography

...