Examples/Random list
From HaskellWiki
Generate a random list of numbers, without using the
System.Random.randoms method:
import System.Random import Data.List main = do seed <- newStdGen let rs = randomify 10 seed print rs randomlist :: Int -> StdGen -> [Int] randomlist n = take n . unfoldr (Just . random)
