Kotlin (programming language): Difference between revisions

Content deleted Content added
K0zka (talk | contribs)
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 peformedperformed before using the value.
 
<source lang=Scala>