Added Modules section and added Introduction to Go Modules article

Albert Moravec 2018-08-29 15:45:48 +02:00
parent ca5c4aa6fd
commit c93481e31b

@ -12,6 +12,7 @@ Table of Contents
* [Error Handling](#error-handling)
* [Interfaces / OOP](#interfaces--oop)
* [Mobile Applications](#mobile-applications)
* [Modules](#modules)
* [Performance and Profiling](#performance-and-profiling)
* [Pointers/References/Memory](#pointers-references-and-memory-management)
* [Reflection](#reflection)
@ -122,6 +123,10 @@ Start by reading the [overview of mobile development](Mobile) documentation firs
* [iOS Apps with Go - Video by Josh Deprez](https://www.youtube.com/watch?v=bftMhhMIJNo) _2015-09-17_
* [5 Part Series - Mobile Go](https://medium.com/using-go-in-mobile-apps)
## Modules
* [Introduction to Go Modules](https://roberto.selbach.ca/intro-to-go-modules/) _2018-08-18_
## Performance and Profiling
* [Mutex profile](https://rakyll.org/mutexprofile/) _2016-12-19_
* [How to Optimize Garbage Collection in Go](http://www.cockroachlabs.com/blog/how-to-optimize-garbage-collection-in-go/) _2015-11-23_