Because types in Go can implement interfaces without saying so, the need to ship libraries together arises seldomly and it is easier to just provide "a bunch of libraries".
This is what we've been doing and it works.
--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
This is sure to ignite a firestorm of controversy. Will the issue ever be settled??
This happens whether you use a framework or not. The minimalist, “mix-and-match” approach that many Gophers advocate will not avoid the eventual software attrition.
By definition, mix-and-match exposes you to different libraries with different APIs, which in turn require you to write different glue software for every mix-and-match combination. So basically, a newcomer has to be thrown into the deep end and fend for himself.
Hey Andrew,Is there a possibility that we might get visitors statistics in the net/http package such as number of visitors per day etc etc?Will
On Wednesday, 22 October 2014 02:03:47 UTC+2, Andrew Gerrand wrote:On 22 October 2014 01:51, <horrido...@gmail.com> wrote:This is sure to ignite a firestorm of controversy. Will the issue ever be settled??
Really? There are people who prefer frameworks, and people who don't. Does this preference need to be a source of controversy?The divide exists not just in the Go world. There are similar debates in the Python and Ruby worlds, too.In general, Go philosophically prefers small, simple pieces, so naturally the Go community leans away from frameworks.But it'll never be "settled" because ultimately it's a matter of taste.And that's just fine.Andrew
--