From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#!/usr/bin/perl
use strict;
use lib 'lib';
my $config = Conan::Configure::Xen->new(
basedir => './examples',
name => 'foo01',
settings => {
ip => '1.2.3.5',
},
);
$config->parse();
print $config->generate();