Help for this page
while(1){ my $var = &foo() ; ... }
sub foo { print shift } sub bar { &foo; print @_ } # BAD!