Denishdenish.hashnode.dev·18 hours agoBuilding a Credit Card Validator with GolangNowadays, fraudsters are all around us due to the development of new technologies and the Internet. Each time you shop online there is always a possibility that somebody somewhere is trying to use a credit card that has been stolen. And guess what? T...DiscussGo Language
Denishdenish.hashnode.dev·Nov 15, 2024Chapter 2: Loops and Strings in Go – Creating Brilliant Code with Style 🚀Welcome back, Go explorers! Ready to dive deeper into Go? So, it is time for our next chapter of Go programming. Today, we’re diving into two fundamental tools in coding: loops and strings. These might sound a bit trivial but these are the real big p...Discuss·35 readsGitHub
Ashwin Gopalsamyashwingopalsamy.hashnode.dev·Nov 7, 2024Understanding Go’s Constants: More Flexible Than They SeemWhen I first got into Go, I thought constants were simple and limited—just fixed values, nothing fancy. But as I delve deeper, I find they're quite versatile. Yes, they're fixed values, but Go handles them in ways that are both flexible and efficient...DiscussGo Programming Languagegolang
Shivam DubeyforGo Tutorialgo-tutorial.hashnode.dev·Nov 6, 2024Variable Declaration and Types in Go: A Beginner’s GuideIn Go, variables are a fundamental building block of programming. They are used to store data, which can be manipulated and used throughout your program. Understanding how to declare variables and work with different types is essential for any beginn...Discussvariable and types in go
Denishdenish.hashnode.dev·Oct 29, 2024Chapter 1: Embarking on Your Go Programming Adventure 🚀Hello, hello, coding partners! ✨ Welcome to this weekend’s picnic if you are a coding beginner or just interested in expanding your skills. Today, we’re going to start with the very fundamental of Go that you should know. This amazing language is so ...Discuss·39 readsGo Language
csmcsm.hashnode.dev·Aug 10, 2024go: SetupRequirements: os: linux mint go version: 1.22.5 or above vs code (with go extension) Steps: Download go package from go's website. Unpack it in a place of your choice. Add go binary path to PATH environment variable: Add this line to .bashr...DiscussgoGo Language
csmcsm.hashnode.dev·Aug 8, 2024go: Aboutgo is a statically typed, compiled, high-level programming language. Features: -> It is syntactically similar to C, but also has garbage collection, structured typing, and built-in CSP-style concurrency. -> Robust standard library.DiscussgoGo Language
Dhruvkumar MaisuriaforGolang Learning Bloggolanglearningbydhruv09.hashnode.dev·Jul 27, 2024Golang Basics - Part 2: Control Structures and FunctionsIntroduction In the previous part, we covered the basic syntax of Golang, including variables, data types, and basic input/output operations. In this part, we'll delve into control structures and functions, which are essential for writing more comple...DiscussGo Language
Saurabh Adhaudevopsvoyager.hashnode.dev·Jul 14, 2024Go StructIntroduction Structures, often referred to as structs, are a composite data type in Go that allow you to group together variables of different types into a single entity. Unlike arrays, which store multiple values of the same data type, structs enabl...Discuss·10 likesGolang (Go)golang
Lokesh Jhalokeshjha.hashnode.dev·Jun 16, 2024Understanding Data Structures in GoData structures are crucial for organizing and storing data efficiently in any programming language. In Go (Golang), several fundamental data structures are available to developers, including arrays, slices, maps, and structs. This article will explo...DiscussGo Language