Skip to content

Instantly share code, notes, and snippets.

@motokiee
Created October 1, 2015 10:44
Show Gist options
  • Save motokiee/312f45cf467465188a70 to your computer and use it in GitHub Desktop.
Save motokiee/312f45cf467465188a70 to your computer and use it in GitHub Desktop.
squareList :: [Int] -> [Int]
squareList xs = [ square' | x <- xs, let square' = x ^ 2]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment