Help for this page

Select Code to Download


  1. or download this
    sub subtract {
        my $self = $_[0];
        return bless [ \ $self ], "...";
    }
    
  2. or download this
    sub subtract {
        return bless [ \ $_[0], ... ], "...";
    }