Command di Golang
Inisiasi Go Module
go mod init nama_projectpackage main
import (
"fmt"
)
func main() {
fmt.Println("Hello World")
}
Running Go Module
go run main.goBuild Go Module
Download Module
Go Get vs Go Install
Last updated