Skip to content

Instantly share code, notes, and snippets.

@khannedy
Created December 22, 2013 13:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save khannedy/8082579 to your computer and use it in GitHub Desktop.
Save khannedy/8082579 to your computer and use it in GitHub Desktop.
Simple Match
val bools = List(true, false, "Eko", "Kurniawan")
for (bool <- bools) {
bool match {
case true => println("BENAR")
case false => println("SALAH")
case _ => println("GAK TAU APAAN TUH YA")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment