Question: What is the correct syntax ta start a goroutine that will `print Hello Gopher!`?
- `go(fmt.Println("Hello Gopher!"))`
 - `go func() { fmt.Println("Hello Gopher!") }`
 - `go fmt.Println("Hello Gopher!")`
 - `Go fmt.Println("Hello Gopher!")`
 
Answer: The correct answer of the above question is Option C:`go fmt.Println("Hello Gopher!")`