Nikhil AkkiPronikhilakki.in·Oct 21, 2023Navigating Go's Core: Syntax, Variables, and Data Types DemystifiedIntroduction Welcome to the next stage of your Go journey! In this guide, we'll unravel the fundamental aspects of Go programming, including its syntax, variables, and data types. Understanding these building blocks is essential as they form the foun...DiscussGo langGo Language
Nikhil AkkiPronikhilakki.in·Oct 14, 2023Going Gophers: Embarking on a Go AdventureIntroduction Welcome to the world of Go, the language known for its simplicity, efficiency, and speed. In this guide, we'll take you on a journey to get started with Go, set up your development environment, and write your first "Hello, World!" progra...Discuss·32 readsGo langgolang
Diwakardiwakarkashyap.hashnode.dev·Aug 28, 2023Pointers in Golang (go)1. What are Pointers? A pointer is a variable that stores the memory address of another variable. It essentially "points" to the location of another variable. This is useful for several reasons: it can be more memory efficient, it can allow you to mo...Discussgolang
Maheshwar Ligadefortechwastitechwasti.com·Apr 3, 2023Reading and Writing Environment Variables in Go: An End-to-End ExampleEnvironment variables are a powerful way to configure your applications without having to hardcode values in your code. In this article, we will walk through an end-to-end example of how to read and write environment variables in Go. Getting Started...Discuss·79 readsgo-languageGo Language
Atharva Pandeyblog.coinademia.com·Dec 21, 2022Creating a Custom Logger in Go with Zerolog: A Step-by-Step GuideIntroduction Logging is an essential part of any software application, as it allows developers to track and debug issues, as well as understand how the application is being used. In this tutorial, we will look at how to create a custom logger using Z...Discuss·1.2K readsGolang RecipesGo programming language