Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating resource.
Please try to avoid dependencies to third-party libraries and frameworks.
Implementation edit is for fixing errors and enhancing with metadata.
Instead of changing the code of the snippet, consider creating another Dart implementation.
s = sum(x)
s := 0 for _, v := range x { s += v }
$s = array_sum($x);
x.iter().sum()
int i,s; for(i=s=0;i<n;i++) { s+=x[i]; }
var _x: Array of integer; _s, i: Integer; begin _s := 0; //assume _x contains some values for i := Low(_x) to High(_x) do _s := _s + _x[i]; end;
s = x.sum
s = Enum.sum(x)
s = sum x
int s = 0; for (int i : x) { s += i; }
S = lists:sum(X).
s = 0 for i,v in ipairs(x) do s = s + v end
s = x.reduce(:+)
var s = x.reduce((a, b) => a + b, 0);
(define s (foldr + 0 x))
let s = x.iter().sum::<i32>();
val s = x.sum()
List.fold_left (+) 0 l
(defn sum [xs] (reduce + xs)) (sum [1 20 300]) ;;=> 123
(reduce #'+ x)
s = sum(x)
var s = x.reduce((a, b) => a + b)
val numbers = listOf(1, 2, 3, 4) val sum = numbers.sum()
Dim s As Integer = x.Sum()
int sum = 0; for (int i = 0; i < n; ++i) { sum += x[i]; }