RosettaCodeData/Task/Host-introspection/Scheme/host-introspection.scm
2024-10-16 18:07:41 -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)))