Hi.
BTW Heinrich, the evalState (sequence . repeat . State $ \s -> (s,s+1)) 0at the end doesn't work anymore. It should be replaced by : evalState (sequence . repeat . StateT $ \s -> Identity (s,s+1)) 0
evalState (sequence . repeat . State $ \s -> (s,s+1)) 0at the end doesn't work anymore. It should be replaced by : evalState (sequence . repeat . StateT $ \s -> Identity (s,s+1)) 0
evalState (sequence . repeat . State $ \s -> (s,s+1)) 0
at the end doesn't work anymore. It should be replaced by :
evalState (sequence . repeat . StateT $ \s -> Identity (s,s+1)) 0