当前位置: 首页 > news >正文

Go - Multiple-line String

 

package mainimport "fmt"func main() {fmt.Println(`Line1\nLine2Line3`)
}

 

1