Rivoreo Source Code Repositories
src.rivoreo.one
/
compiler-explorer
/
bcdfd4673e80e6f2eb9aec6c04468a7f4e0c0cb5
/
.
/
examples
/
haskell
/
default.hs
blob: 97106284db6383428963042bcd5592567e837b57 [
file
] [
log
] [
blame
] [
raw
]
module
Example
where
sumOverArray
::
[
Int
]
->
Int
sumOverArray
(
x
:
xs
)
=
x
+
sumOverArray xs
sumOverArray
[]
=
0