Rename `02-lab.hs` to `lab.hs` Rename `02-polymorphic_functions.hs` to `polymorphic_functions.hs` Add `Homework3.hs` Add `Types.hs`
6 lines
138 B
Haskell
6 lines
138 B
Haskell
{-# LANGUAGE StandaloneDeriving, Safe #-}
|
|
|
|
module Types where
|
|
|
|
data Classification = Low | Medium | High | SuperHigh deriving (Show, Eq)
|
|
|