Navigation :
Strings
Strings
def myString = 'hello'
assert '${myString} world' == 'hello world'
assert "${myString} world" == 'hello world'
// assert '''\
// ${myString} world
// foo bar
// ''' == "\\\nhello world\nfoo bar\n"
assert """\
${myString} world
foo bar
""".stripIndent() == "hello world\nfoo bar\n"