Skip to content

Instantly share code, notes, and snippets.

@pauca
Created May 17, 2016 10: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 pauca/a344f71c8f9f1e8429ddc62e6a6fdba5 to your computer and use it in GitHub Desktop.
Save pauca/a344f71c8f9f1e8429ddc62e6a6fdba5 to your computer and use it in GitHub Desktop.
def f1 = {
println("f1")
true
}
def f2 = {
println("f2")
true
}
def f3 = {
println("f3")
true
}
def f4 = {
println("f4")
true
}
f1 & f2 & f3 & f4
def f5 = {
println("f5")
false
}
f1 & f2 & f3 & f4 & f5
f5 & f1 & f2 & f3 & f4
f5 && f1 && f2 && f3 && f4
f1 && f2 && f3 && f4 && f5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment