What does this program print?

from Reflection
Go 1.27 intermediate 2 min

What does this program print?

Go
package main

import (
    "fmt"
    "reflect"
)

type Score int

func main() {
    score := Score(8)
    value := reflect.ValueOf(&score).Elem()
    fmt.Println(value.CanAddr(), value.CanSet())
    fmt.Println(value.Type(), value.Kind())
}
Open in playground
Report an error