It seems like in most mainstream programming languages, returning multiple values from a function is an extremely awkward thing.
The typical soluti
i thinks python's is the most natural way, when I had to do same thing in php the only was to wrap return into an array. it does have similar unpacking though.