Help for this page

Select Code to Download


  1. or download this
    
    package Dreamcar;
    ...
        return $macchina->{'Modello'}; 
        }
    1;
    
  2. or download this
    package Scuderia;
    use Dreamcar;
    ...
        return $macchina_>{'Tipo'};
        }
    1;
    
  3. or download this
    package Da_corsa;
    use Scuderia;;
    ...
        return $macchina->{'Tempo_sul_Giro'};
        
        }
    
  4. or download this
    #testing the modules
    use strict;
    ...
    
    print "the Racing car is from ", $da_corsa->modello()," and the type i
    +s ",$da_corsa->tipo(),
    " and can do 0-60MPH in : ", $da_corsa->tempo_dal_giro(),"\n";