зеркало из
https://github.com/iharh/notes.git
synced 2025-10-29 12:46:06 +02:00
13 строки
138 B
Plaintext
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
|
|
}
|