blob: 99959021038497c1644a92b7c8d126664806637a [file] [log] [blame]
package errors_test
import (
"errors"
"fmt"
)
func ExampleNew() {
err := errors.New("whoops")
fmt.Println(err.Error())
// Output: whoops
}