refactor: organize exercises and questions for the 5th section

This commit is contained in:
Inanc Gumus
2018-10-22 21:15:08 +03:00
parent fae3ab32d9
commit b295f11ae9
4 changed files with 1 additions and 25 deletions

View File

@ -0,0 +1,18 @@
# EXERCISE
1. Create a new library
2. In it, create a function that returns Go version
3. Create a command and import your library
4. Call your function that returns Go version
5. Run your program
## HINTS
**Create your package function like this:**
```go
func Version() string {
return runtime.Version()
}
```
## EXPECTED OUTPUT
It should print the current Go version on your system.