重複の可能性:
Haskell 宣言の感嘆符は何を意味しますか?
違いは何ですか
data Tree a = Leaf | Bin a !(Tree a) !(Tree a)
と
data Tree a = Leaf | Bin a (Tree a) (Tree a)
重複の可能性:
Haskell 宣言の感嘆符は何を意味しますか?
違いは何ですか
data Tree a = Leaf | Bin a !(Tree a) !(Tree a)
と
data Tree a = Leaf | Bin a (Tree a) (Tree a)