# 01.04-Go 的工具

### Go Tools <a href="#h.p_id_32_l" id="h.p_id_32_l"></a>

Go 是編譯式程式語言，意思是已經將原始碼（你寫的程式碼）轉換為電腦可以理解的語言，因此，在我們開始寫 Go 程式以前，我們需要有 Go 的編譯器（compiler）。

安裝程式會自動幫你設定 Go，我們會用第一版的語言（更多資訊可以在 [http://www.golang.org](http://www.golang.org/) 找到）。

我們來確認每件事情都能正常運作，開啟終端機並輸入下列的指令：

go version

你應該會看到下列的結果：

go version go1.0.2

你的版本編號可能會有點不太一樣，如果你在執行指令時發生了無法識別的錯誤，先試著重新啟動電腦。

Go 工具集是由許多不同的指令與子指令所組成，這些指令清單可以透過輸入下列的指令取得：

go help

我們在後續的章節可以看到如何使用這些指令。


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://go.netdpi.net/start/utility.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
