root/lang/perl/Acme-SelfBenchmark/trunk/acme-selfbenchmark.pl

Revision 13058, 220 bytes (checked in by tokuhirom, 7 months ago)

initial import

  • Property svn:executable set to *
Line 
1#!/usr/bin/perl
2use strict;
3use warnings;
4use FindBin;
5use File::Spec;
6use lib File::Spec->catfile($FindBin::Bin, 'lib');
7use Acme::SelfBenchmark;
8
9my $times = shift || 1_000_000;
10Acme::SelfBenchmark->cmpthese($times);
11
Note: See TracBrowser for help on using the browser.