Usage (from the SYNOPSIS)
file: examples/030_ams.pl
1: use Acme::MetaSyntactic qw( batman robin );
2:
3: # the first loaded theme is the default (here batman)
4: my @names = metaname( 4 );
5: print join(',',@names),"\n";
6:
7: print join ',', metabatman(2), metarobin(2);
~/examples$ perl 030_ams.pl
slosh,swoosh,eee_yow,blurp
kayo,aieee,holy_astringent_plum_like_fruit,holy_homework
Now it's getting interesting..
metaname
is exported as previously.
But additionally the function metabatman
and metarobin
are exported.