- 1
How to solve debug and fix project in go
5 Answers
+ 5
package main
import "fmt"
func main() {
// outputs GO 3 times
fmt.Println("GO")
fmt.Println("GO")
fmt.Println("GO")
}
+ 2
Read all errors and warnings and try to solve one by one
+ 1
package main
import "fmt"
func main() {
// outputs GO 3 times
fmt.Println("GO")
fmt.Println("GO")
fmt.Println("GO")
}
done
0
It's not working