php-src/tests/testfunc.pl
1999-07-08 21:42:29 +00:00

21 lines
152 B
Raku

sub foo()
{
my $i=0;
if ($i) {
my $a = "zeev";
} else {
my $b = "andi";
}
}
sub bar()
{
foo();
}
for ($i=0; $i<1000000; $i++) {
bar();
}