Thread nur 3. spalte in datei einlesen
(10 answers)
Opened by bmxy at 2008-01-14 11:22
Benchmark:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 #!/usr/bin/perl use strict; use warnings; use Benchmark qw(cmpthese); my @array = (1..10); my $test = 9; cmpthese( 10000000, { negativ => sub{ my $x = $array[-2] }, minus => sub{ my $x = $array[$test-1] }, } ); OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/) -- Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html Perl-Entwicklung: http://perl-services.de/ |