perl -wle '$n="";$f="abc";$n=split//,$f;print for @_' #### perl -wle '$n=""; $f="abc"; $n=()=split//,$f; print for @_' #### while(<>) { $n = split; warn "processing $n tokens\n"; &process; # implicitly takes @_ }
## perl -wle '$n=""; $f="abc"; $n=()=split//,$f; print for @_' ##
## while(<>) { $n = split; warn "processing $n tokens\n"; &process; # implicitly takes @_ }