what is go programming langauge
What is Go programming language use for
Go was originally built for programs related to networking and infrastructure. It was intended to replace popular high-performance server-side languages like Java and C++. Today, Go is used for a variety of applications like cloud and server side applications, DevOps, command line tools and much more.
hello word Go programming language:
package main
import "fmt"
func main(){
fmt.Println("Hello Word")
}
Save as hello.go and open
a. cmd and
b.run command go run
c.go run hello.go
No comments:
Post a Comment