Skip to content

akhmadreiza/reilearngo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Learning Notes

A brief description of what this project does and who it's for

Go Commands

## Enable dependency tracking
go mod init example/hello

## Run code
go run .

## Add module requirements
go mod tidy

## Module replace
go mod edit -replace example.com/greetings=../greetings
go mod tidy

## Compile to executable
go build
go install

## Run all tests from root project
go test ./...

Compile and Install

After running go build and go install the executable file will generated in ~/go/bin

Standard Project Layout

see: https://github.com/golang-standards/project-layout

Useful Links

About

My Go Learning Journey

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages