RosettaCodeData/Task/Host-introspection/NetRexx/host-introspection.netrexx
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07: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