From a1d563df642efec24a27b62aebe66435751967e9 Mon Sep 17 00:00:00 2001 From: Inanc Gumus Date: Sat, 24 Nov 2018 21:57:48 +0300 Subject: [PATCH] fix: write your first program question --- .../questions/02-code-your-first-program/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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.