Table of Contents

Error Handling

What is it?

In Go, errors are values returned from functions. The common pattern is: return `(result, error)` and check `if err != nil`.

What is it used for?

Core topics

Hard words (English)