p4raw-id: //depot/perl@10440
(my $y = 12) =~ tr/1/3/;
($f = 1.5) =~ tr/1/3/;
(my $g = 1.5) =~ tr/1/3/;
-print "not " unless $x + $y + $f + $g > 70.9;
+print "not " unless $x + $y + $f + $g == 71;
print "ok 5\n";
# make sure tr is harmless if not updating - see [ID 20000511.005]