main.go 源码
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
// For more tutorials : https://learngoprogramming.com
// In-person training : https://www.linkedin.com/in/inancgumus/
// Follow me on twitter: https://twitter.com/inancgumus
// Package main makes this package an executable program
package main
import "fmt"
/*
main 函数
Go 通过这个函数执行这个程序
在 main package 有且只有一个 main 函数
可执行程序也可以称为 `commands`
*/
func main() {
fmt.Println("Hello Gopher!")
}
你可能感兴趣的文章
go main
go main
go main
go main
go main
go Header
go main
go main
go main
go main