Skip to content

Instantly share code, notes, and snippets.

@torbjornvatn
Created August 7, 2011 18:01
Show Gist options
  • Save torbjornvatn/1130606 to your computer and use it in GitHub Desktop.
Save torbjornvatn/1130606 to your computer and use it in GitHub Desktop.
scala> case class |#|(arg1: String, arg2: String)
defined class $bar$hash$bar
scala> val hash = |#|("en", "to")
hash: |#| = |#|(en,to)
scala> hash match {
| case en |#| to => println(en +" "+ to)
| }
en to
scala> List(1 -> "en", 2 -> "to") map {
| case (tall, tekst) => (tekst, tall)
| }
res9: List[(java.lang.String, Int)] = List((en,1), (to,2))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment