shithub: MicroHs

ref: 802354a60d9537547fd2d55d6bd48310bddb7b86
dir: /tests/View.hs/

View raw version
module View(main) where
import Prelude

f :: Int -> Int
f ((> 10) -> True) = 1
f _ = 0

main :: IO ()
main = do
  print (f 20)
  print (f 10)