Rahul Das Sarmarahulds.hashnode.dev·Nov 2, 2024Let’s Build a Tiny Bank in Go!Alright, let’s dive into creating our own mini-banking system with Go! Imagine this: You’re running a bank (on your computer, of course). You want users to check their balance, make deposits, and withdraw cash. Plus, you’ll be saving their account ba...Go Language
Sundaram Kumar Jhasundaram2023.hashnode.dev·Sep 16, 2024Understanding the Fundamentals of Go ProgrammingWelcome to the world of Go! This guide is designed to prepare you thoroughly for the basics of Go programming, covering all fundamental concepts. Let's dive in! Table of Contents Introduction to Go Setting Up the Go Environment Basic Syntax and S...go fundamentals
Arijit Dasarijitdas.hashnode.dev·Jul 24, 2024Go-Language Course01hello main.go This is a basic Go program that prints "Hello, world!" to the console. Let's break it down step by step and refer to the relevant parts of the Go documentation for more details. Package Declaration: package main Every Go program s...The DevOps SeriesGo Language
Fatuma Abdullahiblog.hijabicoder.dev·Feb 19, 2024Golang Syntax, Concepts and Eco-SystemIn this blog, you are going to understand Go basics, concepts and the Go eco-system. In the end you will be more confident in your learnings, whether it is your first language or you are adding it to your stack. What is Go? Go or golang is an open so...12 likes·178 readsGo Language
Arslan Ametovarslanbek.hashnode.dev·Nov 7, 2023Understanding Basic Data Types in GoGo, also known as Golang, is a statically typed programming language that emphasizes simplicity and efficiency. At the foundation of this language are basic data types that form the building blocks of Go programs. Let's dive into these fundamental ty...33 readsgolang
Nikhil Akkinikhilakki.in·Oct 28, 2023Mastering Go's Control Flow and Functions: Your Path to Gopher GreatnessIntroduction Welcome to the world of Go's control structures and functions! In this guide, we'll dive deep into the essential aspects of programming with Go, including control flow structures (if, for, switch) and the versatility of functions. These ...69 readsGo Language