Skip to content

Instantly share code, notes, and snippets.

@owenrh
Last active August 29, 2015 14:27
Show Gist options
  • Save owenrh/318453e354df70c656fb to your computer and use it in GitHub Desktop.
Save owenrh/318453e354df70c656fb to your computer and use it in GitHub Desktop.
Noddy Scala for a blog post.
(1 to 10).map(_ + 2).reduce(_ + _)
// more 'relaxed' version
1 to 10 map(_ + 2) reduce(_ + _)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment