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

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

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