Scala Symbol class

A very quick look at the Scala Symbol class:

scala> val x = "foo"
x: java.lang.String = foo

scala> 'x
res0: Symbol = 'x

scala> println('x)
'x

Symbol instances are used a lot in the Play Framework.