- or download this
Hash<...>* demonstration<...>(... a)
Hash<...>* hash_ptr = new Hash<...>("demo_data", a);
...
"demonstration_data", hash_ptr
);
}
- or download this
sub demonstration {
my %demonstration_data = ( demo_data => shift );
...
demonstration_data => \%demonstration_data,
};
}
- or download this
Hash<...>* demonstration<...>(... a)
Hash<...> hash("demo_data", a);
...
"demonstration_data", \hash XXX BUG
);
}