in reply to Re^6: Questions about Perl 6
in thread Questions about Perl 6
With long-lived or institutional code there's often more than just "does it look like it runs" involved. There can be detailed code reviews, correctness proofs, requirements for defensive coding, and other things thrown into the mix that complicate things.
For example, if there's a general requirement for defensive programming, type checking, and suchlike things, having B&D features in the language will, if they're properly defined, reduce the number of lines of code over the alternative. It's much more concise to throw types on the declared parameters of a sub or method than it is to have code in your methods that do the typechecking for you, and it's generally less error-prone project-wide as there's less code that you have to write.
|
|---|