blob: 692cc5d170703676cc2f2bcd7639722ab32aa57e [file] [log] [blame]
package groovy
class MultilineStringTest extends GroovyTestCase {
void testMultilineString() {
def s = """abcd
efg
hijk
"""
println(s)
assert s != null
def idx = s.indexOf("i")
assert idx > 0
}
}