The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

use XML::PYX;

my $p = XML::PYX::Parser::ToCSF->new(Validating => 1);

if (@ARGV) { $p->parsefile($ARGV[0]); }
else { $p->parse(\*STDIN); }