You clearly can in Go. How would you deal with exceptions otherwise? You can even get silly with it:
func main() { try(func() { throw("Oops") }).catch(func(e any) { fmt.Println("Caught:", e) }) }
You clearly can in Go. How would you deal with exceptions otherwise? You can even get silly with it:
https://go.dev/play/p/Y1-w9xUXIcO