An open API service indexing awesome lists of open source software.

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

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
```