Desafio: Comentários em Go
Tarefa
- Comente a instrução que deve ser mostrada e descomente a instrução que precisa ser exibida no seguinte código.
index.go
1234567package main import "fmt" func main() { fmt.Println("This sentence should not be outputted") //fmt.Println("This sentence should be outputted") }
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 1. Capítulo 9
Pergunte à IA
Pergunte à IA
Pergunte o que quiser ou experimente uma das perguntas sugeridas para iniciar nosso bate-papo
Suggested prompts:
Can you explain why one statement should be shown and the other commented out?
Can you show me the expected output of the code?
Can you help me understand how commenting works in Go?
Awesome!
Completion rate improved to 1.96
Desafio: Comentários em Go
Deslize para mostrar o menu
Tarefa
- Comente a instrução que deve ser mostrada e descomente a instrução que precisa ser exibida no seguinte código.
index.go
1234567package main import "fmt" func main() { fmt.Println("This sentence should not be outputted") //fmt.Println("This sentence should be outputted") }
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 1. Capítulo 9