#!perl -w use strict; use XML::Simple; my $xs = XML::Simple->new( KeepRoot => 1, ); my $ref = $xs->XMLin("Hello world!"); my $xml = $xs->XMLout($ref); print $xml; exit;