fix: exercises for write your first library and variables find the rectangle area exercise

This commit is contained in:
Inanc Gumus
2018-11-06 01:29:53 +03:00
parent b60bcc32cc
commit 48bf16c035
3 changed files with 16 additions and 8 deletions

View File

@ -19,4 +19,12 @@ func Version() string {
```
## EXPECTED OUTPUT
It should print the current Go version on your system.
It should print the current Go version on your system.
## WARNING
You should create this package under your own folder, not in github.com/inancgumus/learngo folder. Also, please note that, VS Code may automatically import my library which is in github.com/inancgumus/learngo instead of your own library.
So, if you want VS Code automatically import your own package when you save, just move github.com/inancgumus/learngo out of GOPATH to somewhere else, for example, to your Desktop (of course move it back afterwards).
See [this question](https://www.udemy.com/learn-go-the-complete-bootcamp-course-golang/learn/v4/questions/5518190) in Q&A for more information.