https://github.com/davipythonweb/go_content__
Estudando a Linguagem Go
https://github.com/davipythonweb/go_content__
go
Last synced: 9 months ago
JSON representation
Estudando a Linguagem Go
- Host: GitHub
- URL: https://github.com/davipythonweb/go_content__
- Owner: davipythonweb
- License: mit
- Created: 2024-07-22T01:40:35.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-10T01:49:29.000Z (over 1 year ago)
- Last Synced: 2025-03-12T21:31:02.221Z (about 1 year ago)
- Topics: go
- Language: Go
- Homepage:
- Size: 1.1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Go_content__
Estudando a Linguagem Go
## configs Go pra variaveis de ambiente linux
`export GOROOT=/usr/local/go`
`export GOPATH=$HOME/go`
`export PATH=$GOPATH/bin:$GOROOT/bin:$PATH`
`go version`
### para compilar o programa e gerar um executavel
`go build `
#### para compilar e executar
`go run `