Help for this page

Select Code to Download


  1. or download this
    my %services = (
        service1 => { email => \@maintainers },
        service2 => { email => \@maintainers },
    );
    
  2. or download this
    my %services = (
        service1 => { email => [ @maintainers ] },
        service2 => { email => [ @maintainers ] },
    );
    
  3. 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";
    
  4. or download this
    $a is original
    $a_ref1 is original
    ...
    $a_ref1 is altered
    $a_ref2 is altered
    $a_copy is original