php-src/testfunc2.pl

23 lines
187 B
Perl
Raw Normal View History

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