http://www.perlmonks.org?node_id=1027723


in reply to Re: How many man-hours would you estimate you have invested in learning Perl?
in thread How many man-hours would you estimate you have invested in learning Perl?

Let me teach you something else. :)

#!/usr/bin/perl -w is not something you should use. Specifically the -w in there will enable warnings for ALL code, which can include modules which were expressly written to run correctly without warnings (like Coro).

A better preamble would be:
#!/usr/bin/env perl use strictures;
Happy coding! :D