1.go的Hello

新建hello.go

内容:

package main

import (
	"fmt"
)

func main() {

	fmt.Println("Hello liuyao")
}

运行:
	go run hello.go

如果要编译
	
	go build hello.go

演示:

posted @ 2016-12-13 23:12  刘耀  阅读(260)  评论(1编辑  收藏  举报