fix: write your first program question

This commit is contained in:
Inanc Gumus
2018-11-24 21:57:48 +03:00
parent 92d1388d80
commit a1d563df64

View File

@ -115,8 +115,9 @@ func main() {
> >
## Do you have to call the functions yourself (_except the main func_)? ## Do you have to call a function to execute it?
1. Yes, so that, I can execute that function. *CORRECT* _(except the main func)_
1. Yes, so that, Go can execute that function. *CORRECT*
2. Yes, so that, Go can execute my program. 2. Yes, so that, Go can execute my program.
3. No, Go calls the functions automatically. 3. No, Go calls the functions automatically.