mirror of
https://github.com/macocianradu/RosettaHaskellCompiler.git
synced 2026-03-18 13:00:08 +00:00
8 lines
124 B
Haskell
8 lines
124 B
Haskell
data EnumWithoutDescription =
|
|
X
|
|
| Y
|
|
|
|
instance Show EnumWithoutDescription where
|
|
show X = "xs"
|
|
show Y = "ys"
|