blog.therishabhdev.comGo flow controlsGo flow controls Just like any programming language Go also provides flow controls to control the program execution. In this post, I will be discussing if-else, for loop and switch statements. If-else If-else statement is used to execute only some sp...Nov 12, 2023·4 min read
blog.therishabhdev.comHow becoming a programming Tutor helped meBecoming a programming tutor Last year, I signed up for a tutoring platform, and this year, by some chance I got a student from the United Kingdom. And this is where my journey as a tutor started. I had been learning programming and other tech-relate...Oct 27, 2023·4 min read
blog.therishabhdev.comGo operatorsOperators are used to perform mathematical or logical operations. Go provides several operators that can be categorized into various groups like arithmetic operators, comparison(relational) operators, assignment operators, logical operators, bitwise ...Oct 20, 2023·7 min read
blog.therishabhdev.comGo data types, type casting and constantsData types, type casting and constants This blog is in continuation with the previous blog, where I discussed variables and functions in Golang. In this blog, I will be discussing the various data types in Go and the constants. For the previous post,...Oct 13, 2023·3 min read
blog.therishabhdev.comGo variables and functionsGo variables and functions Introduction Go a.ka. golang is a statically-typed compiled high-level programming language as you can find on google yourself. Now let's look at some other aspects of go. Go is a procedural language which means that we def...Oct 3, 2023·4 min read