mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
21 lines
152 B
Raku
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();
|
|
}
|