Merge pull request #48 from clipperhouse/master

Add code generation section
This commit is contained in:
Thiago Avelino 2014-07-06 23:30:30 -03:00
commit f468e9489d

View File

@ -26,6 +26,7 @@ A curated list of awesome Go frameworks, libraries and software. Inspired by [aw
- [Utilities](#utilities)
- [Logging](#logging)
- [Code Analysis and Linter](#code-analysis-and-linter)
- [Code generation & generics](#codegen)
- [Resources](#resources)
- [Websites](#websites)
- [(e)Books](#ebooks)
@ -296,6 +297,15 @@ A curated list of awesome Go frameworks, libraries and software. Inspired by [aw
* [GoLint](https://github.com/golang/lint) - Golint is a linter for Go source code.
## Code generation & generics
*Tools for brining generics-like functionality to Go via code generation*
* [gen](https://github.com/clipperhouse/gen) - Code generation tool for generics-like functionality.
* [go-linq](https://github.com/ahmetalpbalkan/go-linq) - .NET LINQ-like query methods for Go.
* [go generate](https://docs.google.com/document/d/1V03LUfjSADDooDMhe-_K59EgpTEm3V8uvQRuNMAEnjg/edit) - A proposed code generation syntax from Rob Pike.
# Resources
Where to discover new Go libraries.