Re: [Haskell-cafe] Printing list of enum type

14 Apr
2009
14 Apr
'09
5:07 p.m.
I didn't know that, but there's a lot I don't know about Haskell.
It works great.
Thanks!
Michael
--- On Tue, 4/14/09, John Dorsey
What do I need to add to this Color enum type to print a list of them?
You can also easily print a list of /all/ of them. Regards, John scratch$ cat color.hs data Color = Red | Blue | Green | Yellow | Orange | Brown | White | Black deriving (Show,Enum,Bounded) scratch$ ghci color.hs *Main> [minBound..maxBound] :: [Color] [Red,Blue,Green,Yellow,Orange,Brown,White,Black]
5883
Age (days ago)
5883
Last active (days ago)
0 comments
1 participants
participants (1)
-
michael rice