- or download this
sub demonstration {
return {
demonstration_data => { demo_data => shift },
};
}
- or download this
sub demonstration {
my $demonstration_data = { demo_data => shift };
...
'demo_data' => 'foo'
}
};
- or download this
sub foo {
my $foo = shift;
...
__END__
Long output, run it yourself.