Go – Pointers

  • Post author:
  • Post category:GO
  • Post comments:0 Comments

This topic is about Go - Pointers. Pointers in Go are easy and fun to learn. Some Go programming tasks are performed more easily with pointers, and other tasks, such…

Continue ReadingGo – Pointers

Go – Arrays

  • Post author:
  • Post category:GO
  • Post comments:1 Comment

This topic is about Go - Arrays. Go programming language provides a data structure called the array, which can store a fixed-size sequential collection of elements of the same type. An…

Continue ReadingGo – Arrays

Go – Strings

  • Post author:
  • Post category:GO
  • Post comments:1 Comment

Strings, which are widely used in Go programming, are a readonly slice of bytes. In the Go programming language, strings are slices. The Go platform provides various libraries to manipulate strings.…

Continue ReadingGo – Strings

Go – Method

  • Post author:
  • Post category:GO
  • Post comments:2 Comments

In this topic we learned about Go - Method. Go programming language supports special types of functions called methods. In method declaration syntax, a "receiver" is present to represent the…

Continue ReadingGo – Method