Skip to content

Instantly share code, notes, and snippets.

@avwhite
Created February 3, 2013 12:21
Show Gist options
  • Save avwhite/4701564 to your computer and use it in GitHub Desktop.
Save avwhite/4701564 to your computer and use it in GitHub Desktop.
values :: [Integer] -> [[Integer]]
values alph = do
v1 <- alph
v2 <- alph
v3 <- alph
v4 <- alph
v5 <- alph
return [v1, v2, v3, v4, v5]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment