Skip to content

Instantly share code, notes, and snippets.

@rail-rate
Created July 24, 2019 12:34
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 rail-rate/24aef3459adf02c031944a01f480c168 to your computer and use it in GitHub Desktop.
Save rail-rate/24aef3459adf02c031944a01f480c168 to your computer and use it in GitHub Desktop.
continue1
fun main(args: Array<String>) {
for(x in 1..10){
if(x == 3) continue
println("${x}回目の処理")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment