add: func exercises

This commit is contained in:
Inanc Gumus
2019-06-21 11:43:53 +03:00
parent f91086a009
commit c5f69f98b0
10 changed files with 631 additions and 0 deletions

View File

@ -0,0 +1,9 @@
# Function Exercises
1. **[Refactor the Game Store to Funcs - Step #1](https://github.com/inancgumus/learngo/tree/master/25-functions/exercises/refactor-to-funcs-1)**
Remember the game store program from the structs exercises? Now, it's time to refactor it to funcs.
2. **[Refactor the Game Store to Funcs - Step #2](https://github.com/inancgumus/learngo/tree/master/25-functions/exercises/refactor-to-funcs-2)**
Let's continue the refactoring from the previous exercise. This time, you're going to refactor the command handling logic.