in reply to Re: Examples where XML::Simple is the optimal choice?
in thread Examples where XML::Simple is the optimal choice?
my $config = XML::Twig -> parsefile ( 'config.xml') -> simplify;
I suppose the XML::Simple is technically winning here, due to fewer keystrokes needed:
my $config = XMLin ('config.xml' );
I wonder a little about performance, but don't think there'll be much in it for the size of config we'll be talking about
|
|---|