Difference between revisions of "Go Gettng Started"

From UVOO Tech Wiki
Jump to navigation Jump to search
(Created page with "https://www.wolfe.id.au/2020/03/10/starting-a-go-project/")
 
 
(3 intermediate revisions by the same user not shown)
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/
 +
 +
```
 +
mkdir foo
 +
cd foo
 +
vim a.go
 +
go mod init example1
 +
go mod tidy
 +
go build a.go
 +
./a
 +
```

Latest revision as of 00:16, 19 December 2023

https://www.wolfe.id.au/2020/03/10/starting-a-go-project/

mkdir foo
cd foo
vim a.go
go mod init example1
go mod tidy
go build a.go
./a