7 lines
254 B
Text
7 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"!'
|