SIP-XX: Dedented Multiline String Literals

What seems to have been implemented is this, am I correct ?

def example =
  def notIndented = '''
  hello
  '''
  def indented = '''
    hello
  '''
  def oldIndented = """
  hello
  """

Where

  • notIndented is "hello"
  • indented is " hello"
  • oldIndented is the same as indented maybe with some extra \n (unchanged, but I don’t remember how it goes)