RosettaCodeData/Task/Random-number-generator-device-/Forth/random-number-generator-device-.fth
2023-07-01 13:44:08 -04:00

9 lines
168 B
Forth

variable rnd
: randoms ( n -- )
s" /dev/random" r/o open-file throw
swap 0 do
dup rnd 1 cells rot read-file throw drop
rnd @ .
loop
close-file throw ;