http://qs321.pair.com?node_id=1047487


in reply to Re^6: regarding intolerance to perl which I observe
in thread regarding intolerance to perl which I observe

"If it compiles, it works" is a pipe dream. "If it compiles, then it will do something" is probably the best we can hope for. Strong typing isn't enough to prevent logic errors.

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name
  • Comment on Re^7: regarding intolerance to perl which I observe