
Types in Go
So the Golang learning adventure continues! We have our developer environment setup so we’re ready to dive into more Golang code. In this post, I’ll be talking about types and variables in Go. If you’ve used other languages, you may notice as we go through this that Go has some differences in how it uses types compared to other languages. In this article, we’ll be covering: What types are available to us? Assigning values in Go Constants in Go I’ve built a very simple Go file that works with different types in Go which you can view here. Please feel free to clone it, copy/paste it and play around with it. ...