RosettaCodeData/Task/Host-introspection/PL-I/host-introspection.pli
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

11 lines
280 B
Text

details: procedure options (main); /* 6 July 2012 */
declare x float, i fixed binary initial (1);
put skip list ('word size=', length(unspec(x)));
if unspec(i) = '0000000000000001'b then
put skip list ('Big endian');
else
put skip list ('Little endian');
end details;