What anti-patterns, code smells, or anti-idioms have you seen introduced into Go code by people coming from other languages? I.e Javaisms, Pythonisms, etc, in Go?

#go #golang

@jhall

* Getter and setter.
* Working on interface or to many focus on interfaces
* MVC pattern

#golang