<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">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&lt;1000000; $i=$i+1) {
	bar($i);
}
</pre></body></html>