Skip to content

Instantly share code, notes, and snippets.

@ayeshLK
Last active January 4, 2022 20:06
Show Gist options
  • Save ayeshLK/1fa7135c5d6840c325b683fbeb3a1a7a to your computer and use it in GitHub Desktop.
Save ayeshLK/1fa7135c5d6840c325b683fbeb3a1a7a to your computer and use it in GitHub Desktop.
function sum(int[] values) returns int {
int sum = 0;
// each iteration returns a value in the `array`
foreach int value in values {
sum += value;
}
return sum;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment