6 lines
84 B
Groovy
6 lines
84 B
Groovy
|
|
def s = "Greetings "
|
||
|
|
println s + "Earthlings"
|
||
|
|
|
||
|
|
def s1 = s + "Earthlings"
|
||
|
|
println s1
|