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

4 lines
133 B
Racket

#lang racket/base
(printf "Word size: ~a\n" (system-type 'word))
(printf "Endianness: ~a\n" (if (system-big-endian?) 'big 'little))