mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-17 00:10:31 +03:00
6 lines
86 B
Idris
6 lines
86 B
Idris
|
|
||
|
import Data.List
|
||
|
|
||
|
maybeAdd : Maybe Int -> Int -> Int
|
||
|
maybeAdd x y = maybe id (+) x y
|