RosettaCodeData/Task/String-concatenation/Groovy/string-concatenation.groovy

6 lines
84 B
Groovy
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
def s = "Greetings "
println s + "Earthlings"
def s1 = s + "Earthlings"
println s1