Page 1 of 1

The GO Programming Language

Posted: Thu Apr 27, 2017 2:24 pm
by Eli
Go, C++, Java, JavaScript and Python are the most prevalent programming languages officially declared and used by Google. Go is mostly used for highly concurrent performant systems. Try Go:
  1. // This is the Go code!
  2. // Try to run it.
  3. package main
  4. import "fmt"
  5. func main() {
  6.     fmt.Println("Hello, 世界")
  7. }

Go programming language is available for almost all famous distributions: https://golang.org/dl/

Re: The GO Programming Language

Posted: Tue Jun 28, 2022 1:21 pm
by Eli