Help for this page

Select Code to Download


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