shithub: MicroHs

ref: 655e90802b055f1c030bdf19c7ca3fa9e2f9cf3b
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