If you have newlines in a string you will face an error! The simple solution is using backtick (`) around your string:
myString := `I am
a
new string
with
newlines`
Another way to have a multiline while having double quotes (“) is using \n in your string:
myString := "I am \na \nnew string \nwith \nnewlines"