dump abstracts.xml from indico
authorDobrica Pavlinusic <dpavlin@rot13.org>
Wed, 16 Mar 2016 20:10:06 +0000 (21:10 +0100)
committerDobrica Pavlinusic <dpavlin@rot13.org>
Wed, 16 Mar 2016 20:10:06 +0000 (21:10 +0100)
star2016-abstracts.pl [new file with mode: 0755]

diff --git a/star2016-abstracts.pl b/star2016-abstracts.pl
new file mode 100755 (executable)
index 0000000..bda55b1
--- /dev/null
@@ -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);
+