Udit Namdevunamdev0.hashnode.dev·Aug 6, 2024Golang for Beginners: Essential Basics ExplainedHey everyone, welcome to the second part of this series, I'm done learning the basics of Golang and I'm here to explain what I've understood. There are plenty of great sources out there for learning the basics, which you should check out for in-depth...golang
Kaustav Chakrabortynotes.iamkaustav.com·Jun 15, 2024Parallel Function Execution in Go Using ConcurrencyIntroduction As part of my exploration of Golang, I came across a popular feature: first-class support for concurrency. I believe we all understand the benefit or importance of concurrency. In the HTTP way, when an endpoint needs to fetch data from m...146 readsGolang TutorialsGo Language
Ashok Vangablock360.hashnode.dev·Jan 24, 2023Getting Started With Basics of Go Variables,DatatypesVariables //Ways to declare a vailable var <variable_name> <type> var <variable_name> <type> = <value> var <variable_name> = <value> var <variable_name1>, <variable_name2> = <value1>, <value2> <variable_name> := <value> // declare and assign va...56 readsGo HackHousebasics of golang
MIchael Akoraimbits.hashnode.dev·Jan 10, 2023Golang Basics II: If/Else Statements and ArraysLike in the previous section, I drop the snippets, and we code along and run. package main import "fmt" func main() { if condition { expression... } else { expression... } } Straight to If/Else statements. These...if-else in golang
MIchael Akoraimbits.hashnode.dev·Jan 5, 2023Golang Basics I: Variables, Datatypes & Arithmetic OperationsBefore you start, you need to approach GO as a newbie and if you're a newbie great!! Also, it is best to practice (do not copy and paste), write the codes yourself no matter how boring or easy it may look, and do the act of testing the code yourself....1 like·27 readsbasics of golang