shithub: MicroHs

ref: 83c472492f864dce83e948d6968417bc3538db18
dir: /tests/PatBind.hs/

View raw version
module PatBind where

Just x = Just ()

y,z :: Int
(y,z) = (20,30)

u :: Int
(u, v) = (40, True)

main :: IO ()
main = do
  print x
  print y
  print z
  print u
  print v