The best feature I think in Go

Oh, it is make, the fantastic function in Go. It is a generics and overload function which can use data type as argument. It is so powerful and magical, make me exciting!

1 Like

yep, golang has many cool features… for me the interfaces are a very nice thing and the ability to write quickly network applications :smile:

1 Like

Could you please illustrate some of it’s abilities? To share the Magic! :slight_smile:

2 Likes

Channels as primitives and the small spec of the language.

  1. Concurrency becomes orders of magnitude easier to write and reason about with channels and goroutines.
  2. A small and concise specification for the language makes it a joy to work with. No more trying to fit a huge spec in my brain memory or choose a dialect of it.

Bonus: gofmt man gotta love the fact the it ends all useless bickering about code format. It’s like the language makes programmers happy, but gofmt unites us as a community haha.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.