Go 에서 여러 줄 문자열을 작성하는 방법에 대해서 알아보자. 1. Interpreted string 큰 따옴표와 함께 \n 와 같은 이스케이프 문자를 사용하면 여러 줄 문자열을 사용할 수 있다. func main() { lines := "Build simple, secure, scalable systems with Go\n" + "- An open-source programming language supported by Google\n" + "- Easy to learn and great for teams\n" + "- Built-in concurrency and a robust standard library\n" + "- Large ecosystem of partners, communities, an..