Skip to content

Instantly share code, notes, and snippets.

@stasimus
Created June 7, 2012 14:23
Show Gist options
  • Save stasimus/2889065 to your computer and use it in GitHub Desktop.
Save stasimus/2889065 to your computer and use it in GitHub Desktop.
return from closure
def isGreate0(list:List[Int]):Boolean = {
for (i <- list)
if (i <= 0)
return false
true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment