vote up 3 vote down star
1

PERL? Perl? perl? What's good style?

I know the answer—I just wanted to make sure the question was out there and questioners were aware that there is a correct form.

flag

75% accept rate
2  
Capitalize it any way you want - user "brian d foy" will probably come by and correct it for you. ;) – fenomas Oct 8 '08 at 7:31
I believe you're supposed to prefix it with a 'The' and refer to it in the plural. ie: I was coding The Perls this morning. – George Dec 18 at 4:24

11 Answers

vote up 22 vote down check

The correct casing is "Perl" for the language and "perl" for the executable. Using "PERL" flags you as someone who isn't particularly familiar with the language or community.

link|flag
vote up 9 vote down

Quoting the Perl article on Wikipedia.

The name is normally capitalized (Perl) when referring to the language and uncapitalized (perl) when referring to the interpreter program itself since Unix-like file systems are case-sensitive. Before the release of the first edition of Programming Perl, it was common to refer to the language as perl; Randal L. Schwartz, however, capitalised the language's name in the book to make it stand out better when typeset. The case distinction was subsequently adopted by the community.

Also check the perlfaq about this question.

link|flag
Ugh there seems to a bug on markdown rendering, why is the blockquote block is all hyperlinked?? – chakrit Sep 16 '08 at 13:47
Here's the link to perlfaq: perldoc.perl.org/perlfaq1.html#What's-the-difference-between-%22perl%22-and-%22Perl%22%3f – chakrit Sep 16 '08 at 13:48
chakrit, it looks like that was caused by the quoted text having the unmatched link identifier [10] at the end of the text – 1800 INFORMATION Apr 10 at 1:19
Oh, Thanks for the fix... even though it had been months... :-) – chakrit Dec 19 at 21:23
vote up 6 vote down

"PERL is a programming language for writing CGI applications. Its main strength is that it doesn't have any unnecessary warnings or strictures. It is a direct descendent of Perl, a programming language which was used mainly by programmers. However, the original language required too much reading and thinking and so PERL was developed as a language which was more in tune with the requirements of the Internet age".

link|flag
Of course! GRIN – pdcawley Sep 16 '08 at 15:10
I can only hope that people appreciate the humor in this :) – Ovid Sep 16 '08 at 16:43
vote up 3 vote down

Here's the answer from perlfaq1.

What's the difference between "perl" and "Perl"?

One bit. Oh, you weren't talking ASCII? :-) Larry now uses "Perl" to signify the language proper and "perl" the implementation of it, i.e. the current interpreter. Hence Tom's quip that "Nothing but perl can parse Perl." You may or may not choose to follow this usage. For example, parallelism means "awk and perl" and "Python and Perl" look OK, while "awk and Perl" and "Python and perl" do not. But never write "PERL", because perl is not an acronym, apocryphal folklore and post-facto expansions notwithstanding.

link|flag
vote up 2 vote down

While, as has been said, it doesn't make THAT much difference if you get it wrong, some folks do use correct capitalization (or at least, NOT referring to 'PERL' or any of the more sensible backcronyms) as a shibboleth for clue in job ads. :)

link|flag
vote up 2 vote down

Despite a lot of anecdote to the contrary, "PERL" was never really an acronym -- it's a "backronym". The name Perl was chosen first, then some people jokingly applied expansions to it, which caught on.

The PerlMonks community (highly recommended!) taught me the convention, and it's similar to Java's:

  • It's never PERL (or JAVA)
  • When you're talking about the language, it's Perl (or Java)
  • When you're talking about the interpreter itself, it's perl (or java).

That said, it doesn't make a whole hill of beans if you do it "wrong".

link|flag
Actually those conventions were in place long before Perl Monks arrived :-) – davorg Sep 16 '08 at 14:21
vote up 2 vote down

"The name is normally capitalized (Perl) when referring to the language and uncapitalized (perl) when referring to the interpreter program itself since Unix-like file systems are case-sensitive." From wikipedia at time of posting.

link|flag
vote up 1 vote down

Perl

link|flag
vote up 0 vote down

perl or Perl is fine.

link|flag
But they mean different things. "Perl" is the language, "perl" is the compiler. – davorg Sep 16 '08 at 14:12
vote up 0 vote down

It's Perl (for the language) or perl (for the interpreter) but NEVER 'PERL'!

link|flag
1  
I disagree, it is PERL in one case: when all letters are in upper case. See the title of Programming Perl for an example. – Chas. Owens Apr 10 at 1:25
vote up -2 vote down

[Pp]erl is always correct, nobody can say anything against it.

link|flag
See stackoverflow.com/questions/72312/… – Sinan Ünür Dec 18 at 4:01
It was supposed to be a joke. – Jabba Dec 18 at 4:03
Don't post non-answer answers. Post a comment if you feel the need to be witty. – Sinan Ünür Dec 18 at 4:04
"The official word from Larry Wall is that either spelling is acceptable, so it should really be referred to as [pP]erl." @ ternent.com/tech/regexp.html – Jabba Dec 18 at 4:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.