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

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

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 `