Go: مقدمة
ابدأ تعلم Go مع نظرة عامة ومثال Hello World.
Go — Introduction
Overview
Go لغة مترجمة بسيطة مناسبة للخوادم السريعة والأدوات.
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.