2
我試圖聲明一個數據類型,它是一個Either
類型的列表。haskell - 無法解析data/newtype聲明中的數據構造函數:[Int Int]
data EitherInts = [Either Int Int]
但是,當我嘗試編譯這種類型我得到一個錯誤:
Cannot parse data constructor in a data/newtype declaration: [Either Int Int]
我不知道爲什麼。我究竟做錯了什麼?