Newline in Constant string?

If you want to leave it inside your method, there are three ways to do it:

const k1 as string = "Hello" + &uA + "Good bye"

const k2 as string = \"Hello
Good bye!"

const k3 as string = \"Hello\nGood bye!"

See this conversation for information about those last two.