- or download this
SCALAR=Some value
LIST=Foo,Bar,Baz
HASH=Foo:Bar,Baz:Quux
- or download this
DOMAIN=@example.com
USER=sAMAccountName.DOMAIN
...
PRE=a874f4u
POST=ea748tyoal
MAIL=join(DOT,givenName,sn).DOMAIN
- or download this
%h = (
DOMAIN => '@example.com',
...
PASS => sub { md5sum($c->{PRE} . $r->{sAMAcountName} . $c->{POST
+}, 15) },
MAIL => sub { join('.', $r->{givenName}, $r->{sn}).$c->{DOMAIN}
+},
);
- or download this
$out{$key} = $h{$key}->();
- or download this
%out = %h;
- or download this
package Sub::Hash;
...
=cut