Skip to content

Instantly share code, notes, and snippets.

@duncanmak
Created March 27, 2012 03:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save duncanmak/2212307 to your computer and use it in GitHub Desktop.
Save duncanmak/2212307 to your computer and use it in GitHub Desktop.
coffee> As
[ 1, 2, 3, 4, 5 ]
coffee> Bs
[ 'a',
'b',
'c',
'd',
'e' ]
coffee> Cs
[ 'j',
'k',
'l',
'm',
'n' ]
coffee> [[x, y, z] for x in As for y in Bs for z in Cs]
[ [ [ [Object],
[Object],
[Object],
[Object],
[Object] ],
[ [Object],
[Object],
[Object],
[Object],
[Object] ],
[ [Object],
[Object],
[Object],
[Object],
[Object] ],
[ [Object],
[Object],
[Object],
[Object],
[Object] ],
[ [Object],
[Object],
[Object],
[Object],
[Object] ] ] ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment