Skip to content

Instantly share code, notes, and snippets.

@andrewharmellaw
Created May 20, 2013 19:23
Show Gist options
  • Save andrewharmellaw/5614744 to your computer and use it in GitHub Desktop.
Save andrewharmellaw/5614744 to your computer and use it in GitHub Desktop.
Tuple Literal
val tuple = ("apple", "dog")
val fruit = tuple._1
val animal = tuple._2
fruit should be("apple")
animal should be("dog")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment