Paul Barry (barryp) writes "So, just what has Perl got to do with Green Beer? Quite a bit! Learn more by checking out my most recent, em, er, 'article' for Linux Journal. Ummm
Re:Somebody should do this for an April 1 RFC
2shortplanks on 2002-03-18T13:46:11
Surely "official language" is itself a euphamism for "commonly accepted norm".use constant OFFICAL_LANGUAGE = "Perl";
die "Wrong langauge '$language'"
unless $language eq OFFICAL_LANGUAGE;Re:Somebody should do this for an April 1 RFC
2shortplanks on 2002-03-18T16:57:03
And the best thing about explaining it in Perl is that you can diff your explanations when you make mistakes--- comment Mon Mar 18 16:55:25 2002
+++ comment2 Mon Mar 18 16:57:07 2002
@@ -1,4 +1,4 @@
-use constant OFFICAL_LANGUAGE = "Perl";
+use constant OFFICIAL_LANGUAGE => "Perl";
die "Wrong langauge '$language'"
- unless $language eq OFFICAL_LANGUAGE;
+ unless $language eq OFFICIAL_LANGUAGE;