fastfood-hs/app/Main.hs

21 lines
462 B
Haskell
Raw Normal View History

2024-03-11 23:37:53 +01:00
module Main where
import System.Random
2024-03-12 20:55:47 +01:00
data Fastfood = Kapsalon
2024-03-11 23:37:53 +01:00
| Pizza
| Lasagne
2024-03-12 20:55:47 +01:00
| Nachos
| Durum
2024-03-11 23:37:53 +01:00
deriving (Show, Eq, Ord, Enum, Read, Bounded)
instance Random Fastfood where
randomR (a, b) g =
case randomR (fromEnum a, fromEnum b) g of
(x, g') -> (toEnum x, g')
random = randomR (minBound, maxBound)
main :: IO ()
main = print =<< (randomIO :: IO Fastfood)