j
k
j a
j l
On Mon, 5 Nov 2007, Andrew Coppin wrote:
randList :: Int -> IO [Int] randList n = mapM (\x -> randomRIO (0, randMax)) [1..n]
replicateM n (randomRIO (0, randMax)) but it is certainly better to use randomR and wrap it in a State monad
Back to the thread
Back to the list