diff --git a/02-write-your-first-program/questions/02-code-your-first-program/README.md b/02-write-your-first-program/questions/02-code-your-first-program/README.md index b94ab70..34a4136 100644 --- a/02-write-your-first-program/questions/02-code-your-first-program/README.md +++ b/02-write-your-first-program/questions/02-code-your-first-program/README.md @@ -115,8 +115,9 @@ func main() { > -## Do you have to call the functions yourself (_except the main func_)? -1. Yes, so that, I can execute that function. *CORRECT* +## Do you have to call a function to execute it? +_(except the main func)_ +1. Yes, so that, Go can execute that function. *CORRECT* 2. Yes, so that, Go can execute my program. 3. No, Go calls the functions automatically.