sparse-linear-algebra-0.1.0.0: src/Lib.hs
-- | A library to do stuff.
module Lib
(
ourAdd
) where
-- | Add two 'Int' values.
ourAdd :: Int -- ^ left
-> Int -- ^ right
-> Int -- ^ sum
ourAdd x y = x + y-- | A library to do stuff.
module Lib
(
ourAdd
) where
-- | Add two 'Int' values.
ourAdd :: Int -- ^ left
-> Int -- ^ right
-> Int -- ^ sum
ourAdd x y = x + y