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