在 Go 程序中,package main 表示什么?
package main
该语句会立即调用 main 函数。
main
源文件必须重命名为 main.go。
main.go
源代码属于可执行的主程序。
源代码会自动导入格式化输入输出函数。