Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created January 12, 2015 06:20
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 shigemk2/17a7c2ca5eb31cfbcf39 to your computer and use it in GitHub Desktop.
Save shigemk2/17a7c2ca5eb31cfbcf39 to your computer and use it in GitHub Desktop.
val pattern = "([0-9]+) ([A-Za-z]+)".r
val pattern(count, fruit) = "100 Bananas"
println(count)
println(fruit)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment