RosettaCodeData/Task/Null-object/NetRexx/null-object.netrexx

7 lines
254 B
Plaintext

/* NetRexx */
options replace format comments java crossref symbols binary
robject = Rexx -- create an object for which the value is undefined
say String.valueOf(robject) -- will report the text "null"
if robject = null then say 'Really, it''s "null"!'