Sololearn: Learn to Code
New course! Every coder should learn Generative AI!
Try a free lesson
+ 7
"o" should be uppercase in GO fmt.Println ("GO")
7th May 2021, 5:45 PM
Simba
Simba - avatar
+ 4
Solution 🇺🇿HASAN🇺🇿(Challenger) package main import "fmt" func main(){ fmt.Println ("GO") fmt.Println("GO") fmt.Println("GO") }
8th May 2021, 12:10 PM
Gaurav Dixit🇮🇳
Gaurav Dixit🇮🇳 - avatar
+ 3
Your code works for me.
7th May 2021, 5:04 PM
Paul
Paul - avatar
+ 3
Sorry I mislead golang with kotlin
7th May 2021, 5:06 PM
Atul [Inactive]
+ 1
Atul No there is Caps P
7th May 2021, 5:03 PM
A͢J
A͢J - avatar
+ 1
🇺🇿HASAN🇺🇿(Challenger) There is nothing wrong. What output you expect?
7th May 2021, 5:15 PM
A͢J
A͢J - avatar
+ 1
🇺🇿HASAN🇺🇿(Challenger) Did you see this note: Note, that the output should be in all caps. -------------- Read task carefully otherwise you will always get problem. --------------- Btw you have to create a function in this task package main import "fmt" func talk() { fmt.Println("GO") } func main() { talk() talk() talk() }
7th May 2021, 5:48 PM
A͢J
A͢J - avatar