S SmartDocs
Série: haskell haskell 11 lignes · Mis à jour 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

Articles liés