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