mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
123 B
13 lines
123 B
11 years ago
|
sub test {
|
||
10 years ago
|
my $i;
|
||
11 years ago
|
|
||
10 years ago
|
sub f { return; }
|
||
11 years ago
|
|
||
10 years ago
|
$i = 0;
|
||
|
for ($i = 0; $i < 1e8; $i++) {
|
||
|
f();
|
||
|
}
|
||
11 years ago
|
}
|
||
|
|
||
|
test();
|