packages feed

hpc-codecov-0.5.0.0: test/data/project1/src/Lib/Bar.hs

module Lib.Bar
  ( module Lib.Bar
  , module Lib.Bar.Buzz
  ) where

import Lib.Bar.Buzz

theNewFunc :: Int -> Int -> Int -> IO ()
theNewFunc a b c
  | even a = print (a * b + c)
  | even b = print (a * c + b)
  | odd a, odd b = print (b * c + a)
  | otherwise = pure ()