Skip to content

Instantly share code, notes, and snippets.

@emilyst
Created February 26, 2015 02:22
Show Gist options
  • Save emilyst/26ab6a269b023791e66e to your computer and use it in GitHub Desktop.
Save emilyst/26ab6a269b023791e66e to your computer and use it in GitHub Desktop.
→ scala
Welcome to Scala version 2.11.5 (Java HotSpot(TM) 64-Bit Server VM, Java 1.7.0_71).
Type in expressions to have them evaluated.
Type :help for more information.
scala> case object Nerd
defined object Nerd
scala> val nerds = Seq(Nerd, Nerd, Nerd)
nerds: Seq[Nerd.type] = List(Nerd, Nerd, Nerd)
scala> nerds.map(n => n)
res3: Seq[Nerd.type] = List(Nerd, Nerd, Nerd)
scala>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment