Difference between revisions of "Go Gettng Started"
Jump to navigation
Jump to search
Line 3: | Line 3: | ||
``` | ``` | ||
vim a.go | vim a.go | ||
− | go mod | + | go mod init |
go mod tidy | go mod tidy | ||
go build a.go | go build a.go | ||
./a | ./a | ||
``` | ``` |
Revision as of 17:50, 15 December 2023
https://www.wolfe.id.au/2020/03/10/starting-a-go-project/
vim a.go go mod init go mod tidy go build a.go ./a