diff --git a/app/Main.hs b/app/Main.hs index da4af45..302499a 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -2,10 +2,11 @@ module Main where import System.Random -data Fastfood = Friet - | Kapsalon +data Fastfood = Kapsalon | Pizza | Lasagne + | Nachos + | Durum deriving (Show, Eq, Ord, Enum, Read, Bounded) instance Random Fastfood where diff --git a/fastfood-hs.cabal b/fastfood-hs.cabal index 0f05d11..89e5504 100644 --- a/fastfood-hs.cabal +++ b/fastfood-hs.cabal @@ -20,6 +20,6 @@ executable what-should-i-eat main-is: Main.hs -- other-modules: -- other-extensions: - build-depends: base ^>=4.17.2.1, random + build-depends: base ^>=4.17.2.1, random, time hs-source-dirs: app default-language: Haskell2010