Object-oriented programming in Golang
Object-oriented programming is a paradigm that works with classes and objects. Go doesn’t have supports for classes and objects. But in Go, we can do some Object-orientation. In a sense, Go allows for lightweight OOP. Types in Go Go supports custom types via structs. This allows defining custom data structure as well as class-like behavior […]
Object-oriented programming in Golang Read More »