Content deleted Content added
Spelling/grammar correction |
|||
Line 48:
</source>
Kotlin makes a difference between nullable and non-null datatypes. All nullable objects must be declared with a "?" postfix after the type name. Operations on nullable objects needs special care from developers: null-check must be
<source lang=Scala>
|