Created
March 28, 2011 18:14
-
-
Save lucky/890951 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> var foo:Object = null | |
foo: java.lang.Object = null | |
scala> foo | |
res0: java.lang.Object = null | |
scala> foo = new Object | |
foo: java.lang.Object = java.lang.Object@3b7c680 | |
scala> foo | |
res1: java.lang.Object = java.lang.Object@3b7c680 | |
scala> var foo:Object = None | |
foo: java.lang.Object = None | |
scala> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment