RosettaCodeData/Task/Random-number-generator-device-/Common-Lisp/random-number-generator-device-.lisp

4 lines
113 B
Common Lisp
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(defun random-int32 ()
(with-open-file (s "/dev/random" :element-type '(unsigned-byte 32))
(read-byte s)))