Files
compiler-explorer/examples/d/Sum_over_array.d

8 lines
193 B
D

// Hint: Try to compile with -O3 -release -boundscheck=off -mcpu=native
int testFunction(int[] input) {
int sum = 0;
foreach (elem; input) {
sum += elem;
}
return sum;
}