blob: 324973fece88b88f797003b42e3c6ce0dcf5bfc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
-- use of mdo requires an extension,
-- so let's try not enabling it
module Main (main) where
import Control.Monad.Fix
main :: IO ()
main = mdo x <- return (1:x)
return ()
|