Sobes.tech
Junior — Senior

How to return an error from a function

livecode

Task condition

It is necessary to implement error return from a function using only the standard features of the Go language, without involving external libraries.

func main() {
  println(handle())
}

func handle() error {
}