Help for this page

Select Code to Download


  1. or download this
    my $auto = new car("Opel Vectra",50000);
    
  2. or download this
    my $auto = car->new("Opel Vectra",50000);
    
  3. or download this
    use strict;
    use warnings;
    ...
    # add other "collective" methods
    
    1;