Go 程式不求人 - 安裝與撰寫簡單程式
1. 安裝 Go
從 https://golang.org/ 下載各OS適用版本安裝(https://golang.org/dl/),CentOS可利用 yum install golang 指令安裝。
2. 指令 vim hello.go ,編輯hello.go 內容如https://golang.org/提示,如下
----------------------------------------------------
// You can edit this code!
// Click here and start typing.
package main
import "fmt"
func main() {
fmt.Println("Hello, 世界")
}
從 https://golang.org/ 下載各OS適用版本安裝(https://golang.org/dl/),CentOS可利用 yum install golang 指令安裝。
2. 指令 vim hello.go ,編輯hello.go 內容如https://golang.org/提示,如下
----------------------------------------------------
// You can edit this code!
// Click here and start typing.
package main
import "fmt"
func main() {
fmt.Println("Hello, 世界")
}
-----------------------------------------------------
按 Esc + : + wq 儲存後離開
3. 指令 go build hello.go 來編譯程式, 會出現 hello執行檔,執行他,如下
發現成功後,不囉唆,這樣可以稍微擊敗幾些人的能力了
留言
張貼留言