Skip to content

Instantly share code, notes, and snippets.

@nisbus
Created January 31, 2013 15:18
Show Gist options
  • Save nisbus/4683586 to your computer and use it in GitHub Desktop.
Save nisbus/4683586 to your computer and use it in GitHub Desktop.
test() ->
Years = [1,2],
Sex = [male,female],
Age = [toddler, teen, grownup],
Headers = [something,or_other,and_also],
Excpected [
{1,male,toddler,something,{or_other,and_also},
{1,male,teen,something,{or_other,and_also},
{1,male,grownup,something,{or_other,and_also},
{2,female,toddler,something,{or_other,and_also},
{2,female,teen,something,{or_other,and_also}.
{2,female,grownup,something,{or_other,and_also}.
].
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment