What\'s the purpose of Scala object MODULE$?
The following Scala object:
object TestScalaObject { val TEST_SYMBOL = \"*\" def test
MODULE$ holds an instance of the instantiated class. See the Singleton pattern in Java. I don't know of a good source for it, so here's the Wikipedia entry for Singleton.
MODULE$