| หลังติดตั้งใน c:\go\ บนเครื่องคอมพิวเตอร์ สามารถอ่านขั้นตอนการใช้งานใน golang.org ได้ จาก golang.org มีขั้นตอนดังนี้
 1. ทำงานใน %userprofile% ซึ่งต้องรู้ว่าอยู่ห้องไหน
ในแต่ละเครื่องก็จะกำหนดต่างกัน ใช้ DOS> echo %userprofile% ดูได้
เช่น c:\user\acer
 2. เรียกโปรแกรม cmd เพื่อเข้า DOS Mode
 3. DOS> cd %userprofile%
 4. DOS> mkdir go
 5. DOS> cd go
 6. DOS> mkdir src
 7. DOS> cd src
 8. DOS> mkdir hello
 9. DOS> cd hello ที่จะเป็น workspace สำหรับเขียนโปรแกรม
 10. DOS> notepad hello.go
 
package main
import "fmt"
func main() {
    fmt.Printf("hello, world\n")
}
 11. DOS> go build ระบบจะ compile โดยไม่แสดงผลอะไร หากไม่ผิดพลาด
 12. DOS> dir
 hello.exe = 2,058,752 bytes
 hello.go = 78 bytes
 13. DOS> hello
 hello, world
 |