模式匹配数据

时间:2018-03-23 01:48:14

标签: haskell

如何根据数据类型进行模式匹配?


data Fruit = Apple | Banana | Orange 

isYellow :: Fruit -> Bool
isYellow x
  | x == Banana = True
  | otherwise = False

0 个答案:

没有答案