Skip to content

Instantly share code, notes, and snippets.

@qoelet
Created August 2, 2013 09:44
Show Gist options
  • Save qoelet/6138718 to your computer and use it in GitHub Desktop.
Save qoelet/6138718 to your computer and use it in GitHub Desktop.
-- λ <name> <expression>
-- lambda forms for myLast and myInit, tested with example list [1,2,3,4]
(\x -> head (reverse x))[1,2,3,4]
(\x -> take (length x - 1) x) [1,2,3,4]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment