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
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
I tend to agree (Score:2)
In my experience, YAML is a read-only format. It's probably just that I haven't used it enough but every time I try to hand craft YAML I get bitten by the subtleties.
I had a brief flirtation with XML and a config file format some years ago and I still paying the price :-)
I've used hand-rolled parser code for ini-style configs a number of times recently. I haven't bothered with implementing [sections] but often need to include multi-value items. The way I tend to handle that is by putting an '@' prefi
Re:I tend to agree (Score:2)
@JAPH = qw(Hacker Perl Another Just);
print reverse @JAPH;
Reply to This
Parent