sov-kernel-monster / haskell /test_random.hs
SNAPKITTYWEST's picture
chore: push full sov-kernel-monster content from local build
9425aed verified
Raw
History Blame Contribute Delete
103 Bytes
import System.Random
test :: StdGen -> (Int, StdGen)
test gen = randomR (1, 10) gen
main = return ()