In Python
def cross(A, B): \"Cross product of elements in A and elements in B.\" return [a+b for a in A for b in B]
returns an one-dimen
https://github.com/jashkenas/coffee-script/issues/1191