https://github.com/rustkas/golang-main-tutorial
Code examples. https://go.dev/doc/tutorial/module-conclusion
https://github.com/rustkas/golang-main-tutorial
Last synced: over 1 year ago
JSON representation
Code examples. https://go.dev/doc/tutorial/module-conclusion
- Host: GitHub
- URL: https://github.com/rustkas/golang-main-tutorial
- Owner: rustkas
- Created: 2023-12-15T05:55:24.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-15T06:12:53.000Z (over 2 years ago)
- Last Synced: 2023-12-16T06:57:32.090Z (over 2 years ago)
- Language: Go
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Golang-Main-Tutorial
Code examples. https://go.dev/doc/tutorial/module-conclusion
```
go mod init example.com/greetings
go mod init example.com/hello
go mod tidy
```
```
go run
```
```
go test
```
```
go install
```
```
go clean -i
```