Die Go-Sprache (Golang) gewinnt als statisch typisierte Programmiersprache rasch an Popularität.
https://golang.org/dl
Verwenden Sie den Befehl go. Wenn die Installation erfolgreich ist, wird das folgende Ergebnis angezeigt.
Go is a tool for managing Go source code.
Usage:
go <command> [arguments]
The commands are:
bug start a bug report
build compile packages and dependencies
clean remove object files and cached files
doc show documentation for package or symbol
env print Go environment information
fix update packages to use new APIs
fmt gofmt (reformat) package sources
generate generate Go files by processing source
get download and install packages and dependencies
install compile and install packages and dependencies
list list packages or modules
mod module maintenance
run compile and run Go program
test test packages
tool run specified go tool
version print Go version
vet report likely mistakes in packages
Use "go help <command>" for more information about a command.
package main
import "fmt"
func main() {
fmt.Printf("Hello World!")
}
Die Go-Sprache ist im Gegensatz zu Interpreter-Sprachen wie PHP und Perl eine Kompilierungssprache. Sie müssen die Datei kompilieren, damit sie ausführbar ist, bevor Sie sie ausführen können.
go build hello.go
//Wenn die Kompilierung abgeschlossen ist, wird eine Datei mit dem Namen "Hallo" erstellt.
./hello
Wenn Sie aus der Webbranche stammen, vermeiden Sie möglicherweise Go, eine Kompilierungssprache und eine statisch typisierte Sprache, da die wichtigsten Interpretersprachen PHP, Ruby und Javascript sind, für die keine Kompilierung erforderlich ist. Es soll jedoch eine relativ leicht zu erlernende Sprache sein.
Recommended Posts