Help for this page

Select Code to Download


  1. or download this
    use v5.16;
    
    ...
    my $robert = Person->new(nick => "Bob");     # init_arg
    say $robert->nick_name;                      # reader
    say $robert->{"nick-name"};                  # attribute name (direct 
    +hashref access)