http://www.perlmonks.org?node_id=68364


in reply to Re: Re (tilly) 1: (Golf) Strings-to-Array
in thread (Golf) Strings-to-Array

Please don't produce this kind of code except in fun.

But since you ask, the trick is recursion. Here it is broken out:

sub r { my $s; $s .= chop for @_ = @_; $s . 0 ? ( &r , $s ) : () }
and now with better variable names, fewer implicit variables, rewritten loops, that kind of thing:
sub recursive_s2a { my $str_last; foreach my $str (@_ = @_) { $str_last .= chop($str); } if ($str_last . 0) { return (recursive_s2a(@_) , $str_last ); } else { return; } }
And now you see that the function creates the last string in the list to produce, tests whether that was the empty string, if it was it returns nothing, if it wasn't it then proceeds by recursion to generate the first strings, and adds the string it produced to that list.