php-src/testfunc.pl

21 lines
152 B
Perl
Raw Normal View History

1999-04-07 21:05:13 +00:00
sub foo()
{
my $i=0;
if ($i) {
my $a = "zeev";
} else {
my $b = "andi";
}
}
sub bar()
{
foo();
}
for ($i=0; $i<1000000; $i++) {
bar();
}