Help for this page

Select Code to Download


  1. or download this
    sub set_normalized_designation {
        my $self = shift;
    ...
        $designation =~ /.../ or
            die "$designation is not correctly normalized";
    }
    
  2. or download this
    class Thing {
        my $.title is rw;
    ...
            return $normalized_des;
        }
    }