RosettaCodeData/Task/String-concatenation/Groovy/string-concatenation.groovy
2023-07-01 13:44:08 -04:00

5 lines
84 B
Groovy

def s = "Greetings "
println s + "Earthlings"
def s1 = s + "Earthlings"
println s1