go programming language
เริ่มต้นกับ go programming language
go programming language หรือ golang # คือ ภาษาโปรแกรมที่สร้างโดยกูเกิ้ล ในปี 2552 โดย Robert Griesemer, Rob Pike, and Ken Thompson. มีโครงสร้างคล้ายภาษา C สามารถ download มาติดตั้งได้จาก golang.org เลือกแฟ้ม go1.10.1.windows-amd64.msi ขนาด 102 MB เพื่อทดสอบใช้งานบน Windows 10 ในการติดตั้งให้ double click แฟ้ม msi แล้วกด next เพื่อติดตั้งใน c:\go\ แล้วรอ install สักพัก จนได้กดปุ่ม Finish
หาก ต้องการทดสอบเขียน code และ run ผ่าน web browser สามารถใช้งานได้ที่ golang.org
hello world
หลังติดตั้งใน 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

http://goo.gl/72BPC