Skip to content

Instantly share code, notes, and snippets.

@radeinla
Created December 22, 2014 07:09
Show Gist options
  • Save radeinla/82b0191f3415eee93d46 to your computer and use it in GitHub Desktop.
Save radeinla/82b0191f3415eee93d46 to your computer and use it in GitHub Desktop.
Groovy Empty Return Behaviors
class A {
int b
}
List<A> cool() {
return
}
boolean really() {
return
}
println cool: cool(), really: really()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment