GoodList/test/Main.hs

9 lines
138 B
Haskell
Raw Normal View History

2024-02-29 12:03:15 +00:00
module Main (main) where
2024-02-29 17:23:17 +00:00
import GoodList
abc :: GoodList Char
abc = cons 'a' $ cons 'b' $ cons 'c' Empty
2024-02-29 12:03:15 +00:00
main :: IO ()
2024-02-29 17:23:17 +00:00
main = print abc