Skip to content

Instantly share code, notes, and snippets.

@lucky
Created March 28, 2011 18:14
Show Gist options
  • Save lucky/890951 to your computer and use it in GitHub Desktop.
Save lucky/890951 to your computer and use it in GitHub Desktop.
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