Skip to content

Instantly share code, notes, and snippets.

@agiliq
Created July 15, 2009 19:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agiliq/147923 to your computer and use it in GitHub Desktop.
Save agiliq/147923 to your computer and use it in GitHub Desktop.
scala> 10 == 10
res6: Boolean = true
scala> null > 10
<console>:5: error: value > is not a member of Null
null > 10
^
scala> null < 10
<console>:5: error: value < is not a member of Null
null < 10
^
scala> null == null
res9: Boolean = true
scala>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment