Control flow / Loops

let numbers = [2357111317]
var sum = 0
numbers.forEach {
    sum += $0
}
//sum is 58

print("sum is \(sum)")

var mult = 1
[2345].forEach { (value: Intin
    mult *= value
}
//mult is 120

print("mult is \(mult)")

//unlike "for-in", forEach cannot be
//stopped with "break" or "continue"