GO Golang install
In Android termux:
apt update && apt upgrade && pkg install golang
nano hello.go
package main
import "fmt"
func main() {
fmt.Println("Hello world")
}
go build ./hello.go
./hello
OR
go run ./hello.go
In windows
https://go.dev/doc/install