Skip to content

Instantly share code, notes, and snippets.

@ambientlight
Last active February 2, 2020 11:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ambientlight/c7626e1ac8fd01a75533a5436390ccbe to your computer and use it in GitHub Desktop.
Save ambientlight/c7626e1ac8fd01a75533a5436390ccbe to your computer and use it in GitHub Desktop.
Loop with a sum
let nums = [1, 2, 3, 6, 16, 4]
var sum = 0
for var i in (0..<nums.count) {
sum += nums[i]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment