Null object: Difference between revisions

(→‎Undefined values: elaborate a bit)
(→‎{{header|PureBasic}}: Added PureBasic)
Line 325:
...
}</lang>
=={{header|PureBasic}}==
All variables that has not yet been given any other value will be initiated to #Null
<lang PureBasic>If variabel = #Null
Debug "Variabel has no value"
EndIf</lang>
 
=={{header|Python}}==
Anonymous user