Opposition to Python type hints
Opposition to Python type hints
Posted May 7, 2015 17:42 UTC (Thu) by ibukanov (subscriber, #3942)In reply to: Opposition to Python type hints by niner
Parent article: Opposition to Python type hints
Hm, with perl 5.18.4:
~/s> cat x.pl
use strict;
my $a = 10;
if ($a) {
print "OK\n";
} else {
print $b . $b . "\n";
}
~/s> perl -w x.pl
OK
No warnings or errors about undeclared $b. What did I miss?
