go 语言的入门笔记(1)

49 阅读1分钟

一, go 的源码结构

hello.go 

package main
import "fmt"
func main(){
    fmt.Println("我的第一个程序")
    fmt.Print("lets do it")
}