From d6fd426d31b3f582fa32e833a6f9f86892045416 Mon Sep 17 00:00:00 2001 From: Marty Sluijtman Date: Tue, 12 Mar 2024 20:55:47 +0100 Subject: [PATCH] Small thing --- app/Main.hs | 5 +++-- fastfood-hs.cabal | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) 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