shithub: MicroHs

ref: 30ed73a98df14cb18296e7d2178227e6392a8ff7
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