RosettaCodeData/Task/Null-object/NetRexx/null-object.netrexx
2023-07-01 13:44:08 -04:00

6 lines
254 B
Text

/* 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"!'