Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyGogoroutines basicsSingle-choice MCQ

What is the likely output of this program?

package main import "fmt" func main() { go fmt.Println("hello from goroutine") fmt.Println("hello from main") }