Categories
Software

Converting Types in Go

While programming, we often need type conversions. If you come from a language that usually does implicit conversions, converting types in Go can be a bit of a hassle.

First of all, let’s start with some basics. Go is a statically and strongly typed programming language. This means that, variable types must be known at compile time. Additionally, type conversions must be made explicitly.

Categories
Software

Arrays and Slices in Go

Arrays and Slices are one of the fundamental and important concepts of Go programming language. They both contain sequence of types but with some differences.