Latest Articles
Golang return error and handle [Best Practices]
We can return errors in golanf func and then handle errors effectively using Casting Errors, Error wrapping mechanism, and Panic, defer and recover
Golang Math Package Examples [Tutorial]
golang math package examples to perform calculations in go code using math sub packages
Golang read multiple lines from stdin [SOLVED]
We can use fmt.Scan(), bufio.Reader(), bufio.Scanner() function in golang to read multiple lines from STDIN input with examples.
Golang concatenate or merge two or more slices [SOLVED]
We can use copy() and append() function to merge or concatenate two or more slices in Golang.
Golang remove backslash from string [SOLVED]
We can use strings.replace() and strings.replaceall() function to remove backslash from string in golang by replacing backslash with empty character
