Skip to content

Instantly share code, notes, and snippets.

@tylereaves
Created December 5, 2013 19:17
Show Gist options
  • Save tylereaves/7811511 to your computer and use it in GitHub Desktop.
Save tylereaves/7811511 to your computer and use it in GitHub Desktop.
var sum = 0
for x in 3..1000:
if (x mod 3 == 0) || (x mod 5 == 0):
sum += x
echo(sum)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment