mirror of
https://github.com/edwinb/Idris2-boot.git
synced 2024-12-19 02:41:43 +03:00
8 lines
109 B
Idris
8 lines
109 B
Idris
data Wibble = Wobble
|
|
|
|
foo : a -> a -> Bool
|
|
foo x y = x == y
|
|
|
|
bar : Wibble -> Wibble -> Bool
|
|
bar x y = x == y
|