11. 第一个go程序

基本每个语言学习, 都会来个hello world , go也不例外。

package main 

import "fmt"


func main(){
	fmt.Println("hello world")
}