RosettaCodeData/Task/Host-introspection/NetRexx/host-introspection.netrexx
2023-07-01 13:44:08 -04:00

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