14 lines
138 B
Go
14 lines
138 B
Go
package main
|
|
|
|
import "errors"
|
|
|
|
// Need to show solution
|
|
|
|
func process() error {
|
|
return errors.New("error")
|
|
}
|
|
|
|
func main() {
|
|
process()
|
|
}
|