sub scribble { while ( $a = shift ){ $a; # has arg } } #### sub scribble { while ( $_ = shift ){ $_; # has arg } } #### sub scribble { local $_; while ( $_ = shift ){ $_; # has arg } }
## sub scribble { while ( $_ = shift ){ $_; # has arg } } ##
## sub scribble { local $_; while ( $_ = shift ){ $_; # has arg } }