Null object: Difference between revisions

Content added Content deleted
(Added solution for Action!)
(Added GNU APL equivalent)
Line 196: Line 196:
-> ...
-> ...
ENDIF</lang>
ENDIF</lang>

=={{header|APL}}==
APL is a vector/array-based language, so rather than a 'null pointer' or 'null value' there is the 'null vector'.
<lang APL>
⍝⍝ GNU APL
]help ⍬
niladic function: Z ← ⍬ (Zilde)
Zilde is the empty numeric vector (aka. ⍳0)
Not a function but rather an alias for the empty
vector:
⍬≡⍳0
1
</lang>


=={{header|AppleScript}}==
=={{header|AppleScript}}==