Go Programming / Go Lang
Download Go Lang from
https://golang.org/dl/Download VS Code
https://code.visualstudio.com/
install both of them,
open VS code and
create new file.
hello.go
paste following code.
save file.
// You can edit this code!
// Click here and start typing.
package main
import "fmt"
func main() {
fmt.Println("Hello, 世界")
}
Open Terminal and
run following command
go build hello.go
you will a file
./hello
you will see Hello, World message on Screen
I want to learn this and Python