RosettaCodeData/Task/Host-introspection/Scheme/host-introspection.ss
2023-07-01 13:44:08 -04: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)))