How to solve debug and fix project in go | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

How to solve debug and fix project in go

11th May 2021, 7:08 AM
Ishika Kansal
4 Answers
+ 5
package main import "fmt" func main() { // outputs GO 3 times fmt.Println("GO") fmt.Println("GO") fmt.Println("GO") }
30th May 2021, 10:14 AM
Abhishek Swamy
+ 2
Read all errors and warnings and try to solve one by one
11th May 2021, 8:55 AM
A S Raghuvanshi
A S Raghuvanshi - avatar
+ 1
package main import "fmt" func main() { // outputs GO 3 times fmt.Println("GO") fmt.Println("GO") fmt.Println("GO") } done
18th Sep 2022, 4:10 AM
Kanisak Shakya
Kanisak Shakya - avatar
0
It's not working
3rd May 2023, 10:30 AM
Wutt Wutt
Wutt Wutt - avatar