mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-20 10:02:03 +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
|