module Election( Election, createElection, doCount ) where import qualified Counter as Sen data Election = Election String createElection :: FilePath -> Sen.SenateCounter -> IO Election createElection outDir counter = return (Election "testcode") doCount :: Election -> Int -> IO () doCount election numToElect = putStrLn "run election here"