I am reading through LYAH, and in Chapter 9, I found a curious problem. The author provides an example of implementing the "randoms" function:
randoms' :: (RandomGen g, Random a) => g -> [a]
randoms' gen = let (value, newGen) = random gen in value:randoms' newGen
Well, this compiles just fine. But if I change the second line to:
randoms' gen = (fst (random gen)) : (randoms' (snd (random gen)))
The this file reports error on loading:
IOlesson.hs:4:52:
Ambiguous type variable `a' in the constraint:
`Random a' arising from a use of `random' at IOlesson.hs:4:52-61
Probable fix: add a type signature that fixes these type variable(s)
Failed, modules loaded: none.
If I change this line to:
randoms' gen = (fst (random gen)) : (randoms' gen)
Then this will do just fine, and as expected, this will return a list of all identical elements.
I am puzzled: What's so different in Miran's version and my version?
Thanks for any ideas!