diff --git a/challenges/0-hello-world/go/janapc/README.md b/challenges/0-hello-world/go/janapc/README.md new file mode 100644 index 00000000..a5f9281c --- /dev/null +++ b/challenges/0-hello-world/go/janapc/README.md @@ -0,0 +1,23 @@ +# Submissão de Exercicio + +**Exercicio:** 0 - Hello World + +**Nickname:** janapc + +**Nível Técnico:** - junior + +**Empresa:** - Zenvia - + +**Twitter**: https://twitter.com/Janapc_ + +**Dificuldade de Resolução:** - Baixa + +**Comentários:** sempre é bom relembrar como se faz um Hello World + +**Como rodar o desafio**: + +Dentro do diretório do projeto, utilize o comando abaixo: + +```bash +go run main.go +``` diff --git a/challenges/0-hello-world/go/janapc/main.go b/challenges/0-hello-world/go/janapc/main.go new file mode 100644 index 00000000..d2c4e91e --- /dev/null +++ b/challenges/0-hello-world/go/janapc/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello world") +}