retroforth/interfaces/io/rng.forth

14 lines
225 B
Text
Raw Normal View History

~~~
{{
:random:byte
'/dev/urandom file:R file:open
&file:read sip file:close ;
---reveal---
:n:random
random:byte #-8 shift
random:byte + #-8 shift
random:byte + #8 shift
random:byte + ;
}}
~~~