From: Dobrica Pavlinusic Date: Wed, 16 Mar 2016 20:10:06 +0000 (+0100) Subject: dump abstracts.xml from indico X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;ds=sidebyside;h=8805680a3fef465bd83b698b27346d439dff544f;p=star2016 dump abstracts.xml from indico --- 8805680a3fef465bd83b698b27346d439dff544f diff --git a/star2016-abstracts.pl b/star2016-abstracts.pl new file mode 100755 index 0000000..bda55b1 --- /dev/null +++ b/star2016-abstracts.pl @@ -0,0 +1,11 @@ +#!/usr/bin/perl +use autodie; + +use XML::TreePP; +use Data::Dump qw(dump); + +my $tpp = XML::TreePP->new(); +my $tree = $tpp->parsefile( "abstracts.xml" ); + +print dump($tree); +