Null object: Difference between revisions

Added AutoIt Example
mNo edit summary
(Added AutoIt Example)
Line 112:
<lang AutoHotkey>If (object == null)
MsgBox, object is null</lang>
 
=={{header|AutoIt}}==
<lang AutoIt>Local $object = Null
If $object = Null Then MsgBox(0, "NULL", "Object is null")</lang>
 
=={{header|AWK}}==
Anonymous user