S SmartDocs
Serie: haskell haskell 11 líneas · Actualizado 2026-02-03

Adding.hs

haskell/Adding.hs

module Adding where

-- | Adding one.
--
-- >>> addOne 5
-- 6
--
-- >>> addOne 100
-- 101
addOne :: Int -> Int
addOne x = x + 1

Artículos relacionados