1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/tests/testfunc2.pl
1999-07-08 21:42:29 +00:00

23 lines
187 B
Perl

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);
}