/* 1.go语言
*/ package main
import "fmt"
// 入口函数 func main() { // 左括号必须和函数同行 // 调用函数,大部分都需要导入包 fmt.Println("hello go") // go语言语句结尾没有分号 }