What seems to have been implemented is this, am I correct ?
def example =
def notIndented = '''
hello
'''
def indented = '''
hello
'''
def oldIndented = """
hello
"""
Where
notIndentedis"hello"indentedis" hello"oldIndentedis the same asindentedmaybe with some extra\n(unchanged, but I don’t remember how it goes)