https://github.com/jprando/livroazul-goland
estudando golang pelo famoso livro azul
https://github.com/jprando/livroazul-goland
Last synced: 8 months ago
JSON representation
estudando golang pelo famoso livro azul
- Host: GitHub
- URL: https://github.com/jprando/livroazul-goland
- Owner: jprando
- Created: 2025-08-25T14:58:41.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-08-25T16:24:13.000Z (10 months ago)
- Last Synced: 2025-09-08T21:33:08.822Z (10 months ago)
- Language: Go
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Aprendendo Go
Ao executar o comando abaixo
```sh
go run . 123 456 789
```
a saida esperada eh
```text
args [0] /tmp/pastatemporaria/ch1
args ... 123 456 789
```
## com build tags
Ao executar o comando abaixo
```sh
go run -tags=vscode .
```
a saida esperada eh
```text
[go:tags:vscode] rodando com -tags=vscode
[go:tags:vscode] executando a funcao init
[go:tags:vscode] do arquivo debug.go
args [0] /tmp/pastatemporaria/ch1
args ... 123 456 789
```