1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/testfunc2.pl
Zeev Suraski aceaabceff PHP 4.0
1999-04-07 21:05:13 +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);
}