Null object: Difference between revisions

Content added Content deleted
m (add link to Delphi for pascal)
Line 601:
 
=={{header|Python}}==
<lang python>x = Nonetry:
if x is None: x
except NameError:
print "x is Noneundefined"
else:
print "x is not Nonedefined"</lang>
</prelang>
Output:<pre>
x is None
</pre>
 
=={{header|R}}==