Rivoreo Source Code Repositories
src.rivoreo.one
/
compiler-explorer
/
31b65b5fa3919303d3aafafadf707cb6d5ec4129
/
.
/
examples
/
rust
/
Sum_over_array.rs
blob: 8d49e2f020253a35c16acc5838418e588dc602bf [
file
] [
log
] [
blame
] [
raw
]
pub
fn
sum_array
(
input
:
&[
i32
])
->
i32
{
input
.
iter
().
sum
()
}