Difference between revisions of "Go Gettng Started"
Jump to navigation
Jump to search
(Created page with "https://www.wolfe.id.au/2020/03/10/starting-a-go-project/") |
|||
Line 1: | Line 1: | ||
https://www.wolfe.id.au/2020/03/10/starting-a-go-project/ | https://www.wolfe.id.au/2020/03/10/starting-a-go-project/ | ||
+ | |||
+ | ``` | ||
+ | vim a.go | ||
+ | go mod tidy foo | ||
+ | go mod tidy | ||
+ | go build a.go | ||
+ | ./a | ||
+ | ``` |
Revision as of 15:26, 14 December 2023
https://www.wolfe.id.au/2020/03/10/starting-a-go-project/
vim a.go go mod tidy foo go mod tidy go build a.go ./a