RosettaCodeData/Task/Host-introspection/Scheme/host-introspection.ss
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

8 lines
196 B
Scheme

(define host-info
(begin
(display "Endianness: ")
(display (machine-byte-order))
(newline)
(display "Word Size: ")
(display (if (fixnum? (expt 2 33)) 64 32))
(newline)))