GoodList/test/Main.hs
2024-02-29 18:25:24 +01:00

9 lines
138 B
Haskell

module Main (main) where
import GoodList
abc :: GoodList Char
abc = cons 'a' $ cons 'b' $ cons 'c' Empty
main :: IO ()
main = print abc