This repository has been archived on 2025-07-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
fp/week3/Types.hs
AKP 405dc77434
Alter 4 files
Rename `02-lab.hs` to `lab.hs`
Rename `02-polymorphic_functions.hs` to `polymorphic_functions.hs`
Add `Homework3.hs`
Add `Types.hs`
2023-10-23 14:06:42 +01:00

6 lines
138 B
Haskell

{-# LANGUAGE StandaloneDeriving, Safe #-}
module Types where
data Classification = Low | Medium | High | SuperHigh deriving (Show, Eq)