Help for this page

Select Code to Download


  1. or download this
    #!perl-w
    
    ...
    $year=104;
    
    print "$day\-".($month+1)."-".($year+1900)."\n";
    
  2. or download this
    print $day,"\-",($month+1),"-",($year+1900),"\n"; # less expensive
    
  3. or download this
    #! perl-w 
    
    ...
                'none'
            );
            cmpthese( $results ) ;
    
  4. or download this
           
                     Rate    Commafied Concatinated
    Commafied     74894/s           --         -71%
    Concatinated 260000/s         247%           --
    
  5. or download this
    print $day."\-".($month+1)."-".($year+1900)."\n"; # less expensive