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