101 Great things about Perl

I posted a question on LinkedIn Perl user group and I was amazed by the response. This is an attempt to create a list from the responses of the things people love about programming in Perl.

1. You can return scalars or arrays - Perl does not care. In most other languages type checking will prohibit this behavior. While in the wrong hands this can be dangerous, in the right hands it is very powerful !

2. There are many, many very good Frameworks in Perl. One well used one for web development is Catalyst

3. There is a very knowledgeable and supportive programming community - which are perhaps more technical and skilled than other communities. Perl has grown out of the spirit of co-operation and the help is usually of very high quality.

4. CPAN is a repository of Perl classes and its quality and coverage is excellent. You will find almost anything you are looking for and if not maybe someone to create it ! Some examples : Win32::OLE - module to read/write office documents and spreadsheets, GD - module to create images from raw binary, Date::Calc - Date calculator module, Net::FTP - FTP module, LWP - module to pull html docs from the internet.

5. Incredibly strong UNIT TESTING.

6. Very rapid prototyping

7. Automated, but sane, code auditing (especially Perl::Critic)

8. Decent documentation standard.

9. Powerful data structure manipulation like this to find a duplicate in an array foreach(@arr){ print "Duplicate $_\n" if $hash{$_}++};

10. Perl is relatively Platform independent

Comments

Popular posts from this blog

The pitfalls of share options in the technology startup

Insights & Suggestions For Effective Software development

Hire for Engineers not for Frameworks