8 lines
240 B
Text
8 lines
240 B
Text
/* NetRexx */
|
|
options replace format comments java crossref savelog symbols nobinary
|
|
|
|
wordSize = System.getProperty('sun.arch.data.model')
|
|
endian = System.getProperty('sun.cpu.endian')
|
|
|
|
say ' word size:' wordSize
|
|
say 'endianness:' endian
|