Go: Giriş
Go öğrenmeye hızlı bir genel bakış ve Hello World ile başla.
Go — Introduction
Overview
Go, hızlı sunucular ve araçlar için tasarlanmış basit bir derlenen dildir.
Hello World
package main
import "fmt"
func main(){
fmt.Println("Hello, World!")
}
What you'll learn
- How to run Go
- Basic syntax style
- Next steps (lessons & references)
Next
Open the Syntax & Cheat Sheet page for this language.