go 程式設計語言初次使用

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。原文地址:http://bbjava.iteye.com/blog/2004373
本文是為linux準備的。
首先得到go語言的kit 下載地址:https://go.googlecode.com/files/go1.2.linux-386.tar.gz
放到linux 任意目錄下。
使用命令引用
tar -xf go1.2.linux-386.tar.gz

執行命令再執行:ls
你會看到目前的目錄下有個 名為“go”的目錄。
[root@blade Go]# cd go[root@blade go]# lsapi      blog          favicon.ico  LICENSE  pkg         srcAUTHORS  CONTRIBUTORS  include      misc     README      testbin      doc           lib          PATENTS  robots.txt  VERSION


進入 src 目錄:
[root@blade go]# cd src[root@blade src]# lsall.bash  clean.bash  cmd     libmach    Make.dist  race.bash  run.batall.bat   clean.bat   lib9    make.bash  make.rc    race.bat   run.rcall.rc    clean.rc    libbio  make.bat   pkg        run.bash   sudo.bash


然後,安裝kit
鍵入命令:
sh all.bash 

等待完成就可以了。


最後安裝完成,出現幾行,其中一句比較關鍵:
你必須把 /home/blade/Go/go/bin 添加到 PATH.

一般來說PATH 在目錄: /etc的profile裡配置下。
[root@blade src]# cd /etc/[root@blade etc]# find profileprofile[root@blade etc]# 

比如我的配置是這樣:
export PATH=$PATH:/home/blade/Go/go/bin


配置好了,再輸入 source /etc/profile通知系統profile更新了。

現在裝安應該已經成功了。

二、go程式設計語言的hello world

使用vi鍵入代碼:
引用
package mainimport "fmt"func main(){fmt.Println("hello,world")}


執行,
[blade@blade test]$ source /etc/profile[blade@blade test]$ go run hellowrold.go hello,world[blade@blade test]$ 


到此 go語言的安裝與初次使用就完成了。很簡單吧。
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.