Reginald doesn't support direct string as array tail (subscript)?
I write:const.'crlf'='old'
SAY const.'crlf' The output (OOOh, I can't copy the contents in output console window of RexxEd to paste here either!):
CONST.CRLF
If I write:const.crlf='old'
SAY const.crlf The output is correct ('old').
I understand the later one is equivalent with:crlf='CRLF'
const.crlf='old'
SAY const.crlf but can't understand the behaviour of the first example (no any error reported). |