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