开启Golang编程第一章

Go is an open source programming language that makes it easy to build simple,reliable, and effcient software.

Try Go

package main

import "fmt"

func main() {
    fmt.Println("Hello, 世界")
}

https://tour.golang.org/welcome/1

体会:和C/C++、C#、java类似的语言,好基友推荐学习的语言,emmm第一步还是蛮简单的。

好吧第一个花括号不能换行,哈哈哈哈。

原文地址:https://www.cnblogs.com/landv/p/9830512.html