标签: haskell
为什么在Maybe的定义中是:
data Maybe a = Nothing | Just a
为什么定义不是这样的:
data Maybe a = Nothing | a
为什么我们使用Just,这并不简单?