Getting to Know Structs and Interfaces in Golang

Getting to Know Structs and Interfaces in Golang

Although it is possible for us to write programs using only Go’s built-in data types, at some point it will become very tedious.

Getting to know Data Types in Golang

Getting to know Data Types in Golang

##Numbers Integers There are integer types that we can use, including uint8, uint16, uint32, uint64, int8, int16, int32 and int64.

How to Debug Golang in VSCode

How to Debug Golang in VSCode

Maybe you have seen applications that are live with errors or the application stops in the middle of the process we are running.

VSCode Extension Often Used in Golang

VSCode Extension Often Used in Golang

Visual Studio Code is currently a hit loved by programmers because it is said to be easier to use and lighter when run on a computer.

How to Setup Development Go in Visual Studio Code

How to Setup Development Go in Visual Studio Code

Since becoming acquainted with Open Source Visual Studio Code, since then Santekno has been working on a project or in other words ‘coding’ using the Visual Studio Code (VSCode) IDE.

How to Install Golang on Windows, Macbook and Linux Computers

How to Install Golang on Windows, Macbook and Linux Computers

First download the Golang library on the [Golang] website (https://golang.org/doc/install).

How to Create a Stack Using the Standard Template Library

How to Create a Stack Using the Standard Template Library

Stack is a data structure that provides data like a stack in a glass, so if data is put into a glass the first one will be the last to be taken, then this data structure adheres to the LIFO (Last In First Out) rule.

How to Create a Stack using Double Linked List

How to Create a Stack using Double Linked List

Stack is a data structure that provides data like a stack in a glass, so if data is put into a glass the first one will be the last to be taken, then this data structure adheres to the LIFO (Last In First Out) rule.

How to Create a Stack using C++ Arrays

How to Create a Stack using C++ Arrays

Stack is a data structure that provides data like a stack in a glass, so if data is put into a glass the first one will be the last to be taken, then this data structure adheres to the LIFO (Last In First Out) rule.

How to Create a Double Linked List using C++

How to Create a Double Linked List using C++

Double Linked List is a linked list that uses just a pointer variable to store a lot of data using the linked list method, a list of contents that are interconnected.

How to Use a Single Linked List Using C++

How to Use a Single Linked List Using C++

Linked List is a form of data structure, containing a collection of data (nodes) that are arranged sequentially, interconnected, dynamic and limited.