App下载

1584178532007 在线工具

1584178532007 在线工具

package main

import "fmt"

func main() {
    var a = "hello \n world"
    var b = `hello \n world`

    fmt.Println(a)
    fmt.Println("-------------------------")
    fmt.Println(b)

}
运行结果