Created
August 18, 2011 16:38
-
-
Save landon9720/1154482 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scala> class Test { object Obj } | |
defined class Test | |
scala> (new Test).Obj | |
res0: object Test#Obj = Test$Obj$@6e929b52 | |
scala> (new Test).Obj | |
res1: object Test#Obj = Test$Obj$@46b44bc2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment