And we can again \emph{pattern match} on our \code{WeekDay} type. Let's find out if a given day is a Monday: \pause \begin{haskellcode} isMonday :: WeekDay -> Bool isMonday Monday = True isMonday x = False \end{haskellcode}