What does this program print?

from gRPC
Go 1.27 / gRPC-Go 1.83.2 beginner 2 min

What does this program print?

Go
package main

import (
    "fmt"

    "google.golang.org/grpc/codes"
    "google.golang.org/grpc/status"
)

func main() {
    err := status.Error(codes.NotFound, "sku missing")
    fmt.Println(status.Code(err))
}
Open in playground
Report an error