Stories
Slash Boxes
Comments
NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.

All the Perl that's Practical to Extract and Report

The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
 Full
 Abbreviated
 Hidden
More | Login | Reply
Loading... please wait.
  • [...] but only be exercising discipline and limiting the syntax you use to a small subset of the available syntax. This requires discipline on the part of the programmer.
    Um... why? Why do these people think it's necessary to only use a subset of a language? That's a silly restriction for yourself.
    • Are you serious? No experienced coder would want to use everything in Perl5. There are many things in there that are obviously bad ideas at this point. Restricting yourself to a subset is very much necessary.
      • A priori restricting yourself is silly.

        If perl provides a feature that is just what you need, but you decided long ago you'll never use that feature, you're not doing it right. IMO.

        I've never used formats in the past. I'm not saying I'll never use them in the future. It's unlikely, because formats only work well for fixed pitch fonts, but I never say never.
        • There are many features that should be avoided if possible (formats) and some that should be avoided at all costs ($[). Never is a totally reasonable thing to say when choosing your dialect of Perl.