Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    say defined &My::one;          # 1
    say defined &My::two;          #
    say defined &My::three;        #
    
  2. or download this
    sub four (&@);
    # ...
    say ${My::}{four};             # &@
    
  3. or download this
    sub five (&@) :method;
    say ${My::}{five};             # *My::five