fay-0.19: tests/patternMatchingTuples.hs
module PatternMatchingTuples where
main :: Fay ()
main = putStrLn doTest
doTest :: String
doTest = case ("x","") of
(x : xs, c) -> "OK."
module PatternMatchingTuples where
main :: Fay ()
main = putStrLn doTest
doTest :: String
doTest = case ("x","") of
(x : xs, c) -> "OK."