Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created January 3, 2015 01:49
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 shigemk2/41fd66efe8038aa35851 to your computer and use it in GitHub Desktop.
Save shigemk2/41fd66efe8038aa35851 to your computer and use it in GitHub Desktop.
get1st (a,_,_)=a
get2nd (_,b,_)=b
get3rd (_,_,c)=c
main = do
let a = (1,2,3)
print $ get1st a
print $ get2nd a
print $ get3rd a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment