Help for this page
my $var=3; mysleep($var); # these two lines are fine ... sleep($_[0]); $_[0]=10; }
$y=substr("hello",10,1); foo($y);# this runs, but substr() generates warnings because the subst +r() is outside the string foo( substr("hello",10,1) ); # this is a fatal error!