Pranav Kalwadpranav29.hashnode.dev·May 19, 2024The curious case of GolangIntroduction Golang (aka Go) is an open source programming language created by google and released publicly in 2012. In the recent past it has been widely adopted by large number of organisations which has enabled a large ecosystem of partners and co...DiscussGo Language
Yasir Arafatyasir123arafat.hashnode.dev·Mar 22, 2024Converting a string variable into Boolean, Integer or Float type in Go languageVarious types of string conversions are needed while performing tasks in Golang. Package strconv is imported to perform conversions to and from string. String to Boolean Conversion ParseBool is used to convert string to boolean value. It accepts 1, t...DiscussGo Language
Yasir Arafatyasir123arafat.hashnode.dev·Mar 20, 2024User Input in Go languageIn order to take user input in Go language we need to create a reader variable using some inbuilt modules of Go package main import ( "bufio" "fmt" "os" ) func main() { fmt.Println("hi there") reader := bufio.NewReader(os.Stdin)...Discussuser input Go language
Devang Tomardevangtomar.hashnode.dev·Oct 13, 2023Advanced Go Features Demystified 😱: Unraveling the Power of Go! 😎In this article, we’re embarking on an exciting journey to demystify some of the advanced features that make Go such a powerful and efficient language. Buckle up, because we’re about to unravel the secrets behind Go’s advanced capabilities! 💻✨ Inter...Discussgolang
Shiwani Vermashiwaniverma.hashnode.dev·Mar 31, 2023Learning the GO language is fun .....If you're interested in DevOps or already have some experience with it, chances are you've heard of Go. But if you haven't, let me tell you - it's a programming language that's taking the DevOps world to next level Not only is it one of the most popu...DiscussGo