Skip to content

Instantly share code, notes, and snippets.

@ogatatsu
Created December 2, 2013 11:17
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 ogatatsu/7748108 to your computer and use it in GitHub Desktop.
Save ogatatsu/7748108 to your computer and use it in GitHub Desktop.
def test(): Unit = {
for(i <- 1 to 10) {
println(i);
if(i == 5) return;
}
println("test"); //実行されたら気持ち悪い
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment