11 lines
145 B
Plaintext
11 lines
145 B
Plaintext
---
|
|
void consume(out) {
|
|
out << 'World'
|
|
}
|
|
|
|
@groovy.transform.Field
|
|
String greeting = 'Hello'
|
|
---
|
|
$greeting, ${consume(out)}!
|
|
What a nice day.
|