Skip to content

Instantly share code, notes, and snippets.

@Azamat28
Azamat28 / go
Last active March 17, 2021 17:11
Handling every error with intuitive code
package main
import "fmt"
// Handling every error with intuitive code.
func thirdFunction() (error, string) {
// Some code ...
return nil, "Some string"
}