What's the difference of strings within single or double quotes in groovy?

Viewed 56512
def a = "a string"
def b = 'another'

Is there any difference? Or just like javascript to let's input ' and " easier in strings?

2 Answers
Related