Is Perl worth it? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T10:03:52Z http://stackoverflow.com/feeds/question/280810 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/280810/is-perl-worth-it 13 Is Perl worth it? Agoston Horvath 2008-11-11T12:59:24Z 2009-09-14T07:11:04Z <p>Hello,</p> <p>My boss has decided to use Perl as our (preferably) single, main development language. For me, it just doesn't seem right. I'm asking on your opinion about it, as my feelings might be influenced by today's trends and the horrible syntax (coming from c/java background).</p> <p>For me, specifically, after Java, I was shocked about the lack of a good IDE (like Eclipse), the syntax and the contexts, implementation of threading, etc. You know what I'm talking about.</p> <p>What do you think? Am I just getting older, or indeed, Perl is probably not the right choice nowadays as a general-purtpose language for new developments?</p> http://stackoverflow.com/questions/280810/is-perl-worth-it/280821#280821 34 Answer by Paul Tomblin for Is Perl worth it? Paul Tomblin 2008-11-11T13:05:12Z 2008-11-11T21:38:44Z <p>Perl is a very expressive language with a rich syntax. There are lots of ways to express the same idea in Perl, which makes it fun to program. Unfortunately, since your co-workers will inevitably find other ways to express the same idea, it is, in my opinion, sometimes difficult to maintain other people's code. It's also prone to ugly code and "stupid programmer tricks". But with discipline and coding standards, you can go far.</p> <p>That said, if I didn't have 10 years experience with it, I would skip Perl and go straight to <a href="http://www.python.org" rel="nofollow">Python</a>. It's just better at everything I stated as drawbacks to Perl.</p> http://stackoverflow.com/questions/280810/is-perl-worth-it/280826#280826 7 Answer by tloach for Is Perl worth it? tloach 2008-11-11T13:08:28Z 2008-11-11T13:08:28Z <p>Depends on what you're developing. Perl is great as a general-purpose scripting language. Used properly it can be easy to maintain. Much like C++, used improperly it can be a nightmare to do any maintenance. I probably wouldn't choose perl as the sole language for a large project, but then, I wouldn't tend to choose Java as the sole language for a large project either. Really, most projects require a mix of technologies to really be done right, and selecting one language as the only development environment seems a bit short-sighted in general.</p> http://stackoverflow.com/questions/280810/is-perl-worth-it/280852#280852 12 Answer by toolkit for Is Perl worth it? toolkit 2008-11-11T13:21:42Z 2008-11-11T13:21:42Z <p>If you want IDE support, then have you considered <a href="http://www.epic-ide.org/" rel="nofollow">EPIC</a></p> http://stackoverflow.com/questions/280810/is-perl-worth-it/280860#280860 5 Answer by thijs for Is Perl worth it? thijs 2008-11-11T13:24:20Z 2008-11-11T13:24:20Z <blockquote> <p>I'm a carpenter and my boss has just decided that we are now all to use a screwdriver to do our job.</p> </blockquote> <p>All I want to say: Use the right tool for the job! There is no such thing as one tool to rule them all.</p> <p>If Perl makes you happy, use it!</p> <p>In my carpenter example: if all our products are ikea-style I'll probably be happy. But if I need to hammer nails...</p> http://stackoverflow.com/questions/280810/is-perl-worth-it/280997#280997 23 Answer by jms for Is Perl worth it? jms 2008-11-11T14:21:23Z 2008-11-11T14:21:23Z <p>Learn to love <a href="http://www.cpan.org/" rel="nofollow">CPAN</a>.</p> http://stackoverflow.com/questions/280810/is-perl-worth-it/281016#281016 33 Answer by Michael Carman for Is Perl worth it? Michael Carman 2008-11-11T14:27:52Z 2008-11-11T14:27:52Z <p>We can't recommend a language if you don't tell us what tasks you'll be using it for. Perl is fantastic for some applications, poor for others.</p> <p>As for the syntax, Larry Wall (Perl's creator) has described it as "diagonal" (in contrast to "orthogonal" languages). The syntax is designed to mirror the flexibility and expressiveness of natural language. Seeing code like <code>next unless /foo/</code> can be slightly jarring at first but you quickly realize that it flows much more smoothly.</p> <p>The other reason that people complain about Perl's syntax is that regular expressions are a first-class part of the language. What looks like obscure Perl syntax is actually a regex pattern without the (programmer) overhead of wrapping it in a method call.</p> <p>Perl's concept of (list vs. scalar) context is unusual and <a href="http://www.netlingo.com/lookup.cfm?term=AFAIK" rel="nofollow">AFAIK</a> unique. It isn't right or wrong; it's just different.</p> <p>There are IDEs available for Perl. For Eclipse there is the <a href="http://www.epic-ide.org/" rel="nofollow">EPIC</a> plugin. ActiveState has <a href="http://www.activestate.com/Products/komodo_ide/" rel="nofollow">Komodo</a>. Personally, I prefer to use a generic and configurable text editor for all my programming as I work in a variety of languages and prefer a consistent interface to a highly specialized one.</p> http://stackoverflow.com/questions/280810/is-perl-worth-it/281033#281033 10 Answer by mirod for Is Perl worth it? mirod 2008-11-11T14:35:16Z 2008-11-11T14:35:16Z <p>What are your boss reasons for using Perl? You don't mention any, but I suppose he came up with a couple. </p> <p>As for your concerns, there are a couple of IDEs available, EPIC was already mentioned, but also <a href="http://www.activestate.com/" rel="nofollow">Komodo</a> although most Perl programmers seem to use vi or emacs. Coming from C, Perl's syntax is really easy to pickup, you start by writing "C in Perl" then learn more as you go along. Make sure you check out Moose for your OO needs, pick up a few books beyond the usual Learning/Mastering/Programming Perl, like the oft mentioned Perl Best Practices, but also <a href="http://oreilly.com/catalog/9780596100926/?CMP=OTC-KW7501011010&amp;ATT=perltestingadn" rel="nofollow">Perl Testing</a> (the Perl community has a VERY strong testing culture), and you should have no problem learning the language.</p> <p>And when you figure out that most of the code you need to write has already been written and is available, searchable and easy to install, from CPAN, maybe you will even learn how to like the language. Or at least how productive it makes you.</p> http://stackoverflow.com/questions/280810/is-perl-worth-it/281047#281047 7 Answer by Edward Kmett for Is Perl worth it? Edward Kmett 2008-11-11T14:40:26Z 2008-11-11T14:40:26Z <p>Perl is an amazingly good choice when you are writing a lot of "glue" that has to talk to a bunch of disparate systems or work with text.</p> <p>In many ways, my favorite platform is CPAN. Perl just happens to be the language you have to use to pull together the modules in CPAN.</p> <p>The ability to just 'get stuff done' by loading a couple of CPAN modules and talking to them is dramatic when you compare it to even trying to figure out the API for an equivalent chunk of code in a more traditional high level language like Java. </p> <p>That assumes that in java/c#/c++ you can even find a library that does what you want, and that the maintainer of the library still actively maintains it and doesn't charge an arm and a leg.</p> <p>A large part of that power comes from Perl's initially-strange-seeming 'do what i mean' semantics.</p> http://stackoverflow.com/questions/280810/is-perl-worth-it/281048#281048 31 Answer by draegtun for Is Perl worth it? draegtun 2008-11-11T14:40:54Z 2008-11-11T21:51:18Z <p>Ugliness is only skin deep!</p> <p>Give Perl a shot by trying one or more of the following...</p> <ul> <li>interact with the great community at places like <a href="http://perlmonks.org" rel="nofollow">PerlMonks</a></li> <li>get involved with your local <a href="http://www.pm.org/" rel="nofollow">Perl user group</a></li> <li>play with cool stuff like <a href="http://moose.perl.org" rel="nofollow">Moose</a></li> <li>explore other great tools &amp; code on <a href="http://search.cpan.org" rel="nofollow">CPAN</a></li> <li>subscribe to <a href="http://www.theperlreview.com/" rel="nofollow">The Perl Review</a> magazine.</li> </ul> <p>There's plenty of beauty to fall in love with once you've scratched thru the surface. Have a look and make your own call.</p> <p>/I3az/</p> <p>PS. I've worked for a few companies now that decided on using Perl as their main development language. In all cases its been a successful decision.</p> http://stackoverflow.com/questions/280810/is-perl-worth-it/281242#281242 -17 Answer by Chris Brooks for Is Perl worth it? Chris Brooks 2008-11-11T15:37:57Z 2008-11-11T15:37:57Z <p>Perl as main devt language? If I was being ultra cynical (how unlike me) I’d wonder if that decision was made merely to keep the team in business till the heat death of the universe (*1)</p> <p>Perl is maybe OK as a glue, or small utility language – but I’d still rather use Groovy. Or anything else.</p> <p>I do think Perl is symptomatic of the ills of IT. A purely techie tool promoted to enterprise application development. A language which encourages terseness does not encourage simplicity, and KISS overrides (OO term, Perl developers please note (*2)) anything else.</p> <p>And I’ve yet to meet a Perl developer who understands TDD (*3). </p> <p>(<strong>123) Now, don’t get out of your hair, not trying to to be nasty, I just __hate</strong> Perl....</p> http://stackoverflow.com/questions/280810/is-perl-worth-it/281353#281353 2 Answer by Jim Carroll for Is Perl worth it? Jim Carroll 2008-11-11T16:18:06Z 2008-11-11T16:18:06Z <p>I heard a quote somewhere, and I think it applies. "If you make people think they're thinking, they'll love you; but if you really make them think, they'll hate you." (<a href="http://www.quoteworld.org/quotes/8707" rel="nofollow">http://www.quoteworld.org/quotes/8707</a>)</p> <p>This hit me hard once when my boss wanted to use C++ for everything, and I was trying to slowly warm him up to the combination of C++ and Python. I was challenging my boss to think about things in a new way, and he hated me for it.</p> <p>If your boss likes Perl, he's creating a Perl culture that you might not enjoy in the long haul. Don't fight it. Find a culture you do thrive in.</p> <p>(the above is stated in absolutes, but it's really just a weakly-held opinion.)</p> http://stackoverflow.com/questions/280810/is-perl-worth-it/286380#286380 4 Answer by Matthew Watson for Is Perl worth it? Matthew Watson 2008-11-13T06:34:07Z 2009-08-19T13:35:16Z <p>The only issue with Perl, compared to something like Java, is Perl offers more freedom, its easy to do the "wrong" thing, its harder to throw an inexperienced programmer at a problem and expect them to come up with a nice solution.</p> <p>That being said, there is no reason why you can't do great things in Perl, but if you are new to this road, I'd highly recommend getting everyone in the team a copy of <a href="http://oreilly.com/catalog/9780596001735/" rel="nofollow">Perl Best Practices</a>, and making sure you always run <a href="http://search.cpan.org/perldoc/perlcritic" rel="nofollow"><code>perlcritic</code></a> and <a href="http://search.cpan.org/perldoc/perltidy" rel="nofollow"><code>perltidy</code></a> over your code. This will help to keep everyone writing in a similar fashion.</p> http://stackoverflow.com/questions/280810/is-perl-worth-it/286425#286425 4 Answer by John T for Is Perl worth it? John T 2008-11-13T07:20:35Z 2008-11-13T07:20:35Z <p>Some other gurus on OS thoroughly explained their opinions on Perl yesterday and convinced me to start on it a bit early. As explained by Brian, a lot of people bash on Perl for horrible syntax, but the syntax is only as maintainable as the developer makes it. You can make Perl code just about as elegant as any other code, people just get a different perception when they see somebody make a small obfuscated statement. Having obfuscation competitions in Perl specifically doesn't help the image either, but eh, what can ya do. My one recommendation for you is to pick up the Camel though. You'll know what I mean when you see it =]</p> http://stackoverflow.com/questions/280810/is-perl-worth-it/290122#290122 19 Answer by Newbie Git for Is Perl worth it? Newbie Git 2008-11-14T13:47:28Z 2008-11-14T13:47:28Z <p>Is Perl worth it? </p> <p>Absolutely. Here's just a few reasons:</p> <ul> <li>CPAN - is the most comprehensive open source code repository of any language</li> <li>Conway's "Perl Best Practices" - have solidified Perl coding standards (see Perl::critic on CPAN)</li> <li>Moose - a meta object protocol for Perl means much of Perl6 OO is available now</li> <li>Here comes everyone - Perl has a long but thankfully low learning curve. CPAN contributions will continue apace as even more programmers reach the CPAN-end of the curve. </li> <li>Perl6 - is designed to become the lingua franca of computer languages (<a href="http://pugscode.org" rel="nofollow">http://pugscode.org</a>). Larry Wall has synthesised the best features of all other programming paradigms (functional, OO, logic, static, dynamic, concurrency etc) into one language.</li> </ul> <p>I predict in the next couple of years Parrot (the Perl6 virtual machine) and other Perl6 implementations will be released - so starting to learn Perl5 now helps you to prepare for Perl6.</p> <p>In my opinion Perl is the most valuable tool in any programmer's toolbox. </p> http://stackoverflow.com/questions/280810/is-perl-worth-it/295370#295370 1 Answer by zamfir for Is Perl worth it? zamfir 2008-11-17T11:34:38Z 2008-11-17T11:34:38Z <p>Perl is the best scripting language out there. even better than Java if you ask me.</p> http://stackoverflow.com/questions/280810/is-perl-worth-it/764728#764728 13 Answer by DanM for Is Perl worth it? DanM 2009-04-19T02:46:44Z 2009-04-19T02:46:44Z <p>For years I read a lot of "obfuscated" Perl code. I really had trouble figuring out what was going on. Then one day I stumbled over the work of a real Perl programmer. The code was understandable, well-documented, and as a result easy to maintain.</p> <p>He had a personal Perl process that used a coding standard, consistent style.</p> <p>This reminded me that good programming is more about the programmer and less about the language.</p> http://stackoverflow.com/questions/280810/is-perl-worth-it/1300891#1300891 4 Answer by Zac for Is Perl worth it? Zac 2009-08-19T15:50:01Z 2009-08-19T15:50:01Z <p>I honestly think the language you use is a minor consideration in the grand scheme of things. I ever wrote a blog recently about this subject which covers my feelings pretty completely: <a href="http://whatwouldpicarddo.blogspot.com/2009/08/why-progamming-language-you-use-should.html" rel="nofollow">Why the programming language you use should be the last thing you worry about</a></p> <p>My first real programming job was at a Perl shop. I didn't even know Perl when I started and most of my experience prior had been in C/C++. I continually bitched and moaned about the lack of an IDE, the loose typing, and various other things I thought sucked about Perl.</p> <p>But you know what? We pushed out an amazing amount of code and supported a huge number of users with an incredible performant system. My subsequent time with Java and .net really makes me appreciate the benefits a 'lightweight' language like Perl has to offer. Of course, we we working within a well-thought out object oriented framework that mirrored much of what was done subsequently in the Java world (and had been created when Java was still painfully slow).</p> <p>Sure, a lot of Perl is hacky scripting, but if you do it right, it works just fine. I don't think the decision to use Perl or another language (unless it's something silly like assembler) is going to make or break any project, provided you put some real critical thought into the work you're doing.</p> <p>That said, I still <em>prefer</em> programming in Java. But sometimes I actually find myself missing Perl.</p> http://stackoverflow.com/questions/280810/is-perl-worth-it/1420082#1420082 1 Answer by Donnie for Is Perl worth it? Donnie 2009-09-14T07:11:04Z 2009-09-14T07:11:04Z <p>Here are some thoughts I had while reading through this.</p> <p>It's all about productivity.</p> <p>If you have programmed expertly in Perl for 10 years, in Python for 10 years, and in Java for 10 years, then you'll probably write your program in Perl because you'll complete the program faster, the program will have fewer lines of code, and the language will stay more out of your way.</p> <p>If you are not an expert in Perl, Python, or Java, and you have to choose one of those languages, then I recommend that you choose Python. You'll become proficient with Python a lot faster than you will with Perl and Python is far more concise than Java.</p> <p>The following line of Perl code works exactly as you see it. You don't have to wrap it in a method or a function or a class. You don't have to compile it separately. It doesn't need any external modules. You can just run it.</p> <pre><code>@a= grep {/9$/} map {$_ * $_} (1..50); say scalar(@a), ": ", join(", ", @a); </code></pre> <p>The above code counts the numbers between 1 and 50 (inclusive) that have squares that end in the number 9. It then prints to the standard output the count followed by the comma-separated square values. For someone who's been programming Perl a long time, the code is actually easier to follow than the English description in the two sentences that precede this one.</p> <p>I'll leave the Java version, laden with boiler-plate code, as an exercise for the reader.</p> <p>To some degree, the success of Perl probably relates to the extremely high productivity of a Perl expert compared to the productivity of a C/C++/Java/C#/Etc expert. This productivity translates into a real advantage for businesses. Python and Ruby also give developers enormous productivity gains compared to other more wordy and more restrictive languages. And they're much easier to master than Perl.</p> <p>--Donnie</p>