Skip to content

Instantly share code, notes, and snippets.

@herrphon
Created August 10, 2020 07:55
Show Gist options
  • Save herrphon/dd750f33b567b37f77229c0558e8c1c0 to your computer and use it in GitHub Desktop.
Save herrphon/dd750f33b567b37f77229c0558e8c1c0 to your computer and use it in GitHub Desktop.
def myMethod(a, b) {
println("a: " + a + " / b: " + b)
}
myMethod(1, 2)
println("---")
myMethod 1, 2
println("---")
myMethod 1,
2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment