aboutsummaryrefslogtreecommitdiff
path: root/src/Config.elm
blob: 60f4cc317be809706739355df0b403021fe264f9 (plain)
1
2
3
4
5
6
7
8
9
module Config where

data Config = White | Black

otherConfig : Config -> Config
otherConfig config =
  case config of
    White -> Black
    Black -> White