Skip to content

Instantly share code, notes, and snippets.

@stasimus
Created June 7, 2012 13:48
Show Gist options
  • Save stasimus/2888876 to your computer and use it in GitHub Desktop.
Save stasimus/2888876 to your computer and use it in GitHub Desktop.
Explicit return
object Program {
def main(args: Array[String]) {
val obj = new TestClass
obj func { println("inside"); return }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment