RosettaCodeData/Task/Null-object/ArkScript/null-object.ark

6 lines
57 B
Plaintext

(let a nil)
(let b 5)
(print (nil? a))
(print (nil? b))