Skip to content

Instantly share code, notes, and snippets.

@jjuliano
Created June 2, 2019 22:08
Show Gist options
  • Save jjuliano/d480d0d2b33bb5c211c239005d57a057 to your computer and use it in GitHub Desktop.
Save jjuliano/d480d0d2b33bb5c211c239005d57a057 to your computer and use it in GitHub Desktop.
for i := 1; i < 100; i++ {
if ((i%5 == 0) && (i%7 == 0)) {
fmt.Println(i)
break
}
}
// 35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment