Re: Proposed feature: die on compile with undefined functions
[email protected] ("Paul \"LeoNerd\" Evans")
| Newsgroups | perl.perl5.porters |
|---|---|
| Message-ID | <[email protected]> |
Plus let us not all forget that the entire point of a dynamic language is that it is dynamic. Method calls, for instance, are not checked at compiletime *at all*. use v5.42; require Some::Object::Class; say Some::Object::Class->new->message; The more code goes more OO-shaped as styles change and adapt to things like v5.38's "use feature class", the more this will be the usual shape anyway. -- Paul "LeoNerd" Evans [email protected] http://www.leonerd.org.uk/ | https://metacpan.org/author/PEVANS