notes/pl/groovy/groovy-method-calling.txt
Ihar Hancharenka 5dff80e88e first
2023-03-27 16:52:17 +03:00

13 строки
138 B
Plaintext

class Foo {
void bar(def a, def b) {}
}
def foo = new Foo()
foo.bar('123', 456)
foo.bar '123', 456
foo.with {
bar '123', 456
}