It is not needed to split the string like this: ``` a="potentially long string on"\ "multiple lines" ``` but it is better rather to put the '\' inside the string: ``` a="potentially long string on\ multiple lines" ```