Skip to content

Instantly share code, notes, and snippets.

@Ham-e
Created April 21, 2013 02:10
Show Gist options
  • Save Ham-e/e7d62ac4646532cd6507 to your computer and use it in GitHub Desktop.
Save Ham-e/e7d62ac4646532cd6507 to your computer and use it in GitHub Desktop.
object Euler001 extends App {
var res = 0
for(i <- 1 to 1000){
if(i%3 == 0 || i%5 == 0)
res += i
}
println(res)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment