/Go_Lang_Projects

All testing projects will be uploaded here.

Primary LanguageGo

Go and MySQL Cheatsheet

Basic Go Commands

Creating a Go Module

go mod init <module-name>

Installing Dependencies

go get <package-name>

Running a Go Program

go run <file-name.go>

Building an Executable

go build

Formatting Code

go fmt

MySQL Connection Commands

Installing MySQL Driver

go get github.com/go-sql-driver/mysql