第一个Go程序 “hello world”
7/31/2022 go
# 第一个Go程序 “hello world”
package main
import "fmt"
func main() {
fmt.Println("hello, world")
}
1
2
3
4
5
6
7
2
3
4
5
6
7
szc3h9.github.io package main
import "fmt"
func main() {
fmt.Println("hello, world")
}