- or download this
my %services = (
service1 => { email => \@maintainers },
service2 => { email => \@maintainers },
);
- or download this
my %services = (
service1 => { email => [ @maintainers ] },
service2 => { email => [ @maintainers ] },
);
- or download this
#!/usr/bin/env perl
use strict;
...
say "\$a_ref1 is $$a_ref1";
say "\$a_ref2 is $$a_ref2";
say "\$a_copy is $a_copy";
- or download this
$a is original
$a_ref1 is original
...
$a_ref1 is altered
$a_ref2 is altered
$a_copy is original