Question: What is the correct syntax ta start a goroutine that will `print Hello Gopher!`?

  1. `go(fmt.Println("Hello Gopher!"))`
  2. `go func() { fmt.Println("Hello Gopher!") }`
  3. `go fmt.Println("Hello Gopher!")`
  4. `Go fmt.Println("Hello Gopher!")`

Answer: The correct answer of the above question is Option C:`go fmt.Println("Hello Gopher!")`