Add support for raw strings (backtick strings). ```golang print(`hello\nworld`) // Prints "hello\nworld" (the "\n" is not interpreted as newline). ```