We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8aa3d80 + b7fac0b commit d771cf1Copy full SHA for d771cf1
hello-go/main.go
@@ -6,6 +6,6 @@ import "fmt"
6
7
func main() {
8
fmt.Println("Hello, World!")
9
- nome,sobrenome := fmt.Println("David Nunes")
10
- fmt.Println(nome,sobrenome)
11
-}
+ nome, sobrenome := fmt.Println("David Nunes")
+ fmt.Println(nome, sobrenome)
+}
operators/main.go
@@ -4,9 +4,9 @@ import "fmt"
4
5
// Práticas de operações em Go!
-func main() {
+func main() {
x := 12
y := "aprendendo go"
fmt.Printf("x: %v, %T\n", x, x)
fmt.Printf("y: %v, %T", y, y)
12
0 commit comments