bda55b1286529be82089c2f276ae572350bb9e2f
[star2016] / star2016-abstracts.pl
1 #!/usr/bin/perl
2 use autodie;
3
4 use XML::TreePP;
5 use Data::Dump qw(dump);
6
7 my $tpp = XML::TreePP->new();
8 my $tree = $tpp->parsefile( "abstracts.xml" );
9
10 print dump($tree);
11