fay-0.16.0.0: tests/whereBind2.hs
import Prelude
someFun x = fun x
where fun x | x < 50 = "ok"
| otherwise = "nop"
main :: Fay ()
main = do
putStrLn (someFun 30)
putStrLn (someFun 100)
import Prelude
someFun x = fun x
where fun x | x < 50 = "ok"
| otherwise = "nop"
main :: Fay ()
main = do
putStrLn (someFun 30)
putStrLn (someFun 100)