What does the saved method value print?

from Methods
Go 1.27 intermediate 2 min

What does the saved method value print?

Go
package main

import "fmt"

type Price struct{ Cents int }

func (price Price) WithTax(tax int) int {
    return price.Cents + tax
}

func main() {
    price := Price{Cents: 100}
    calculate := price.WithTax
    price.Cents = 200
    fmt.Println(calculate(20))
}
Open in playground
Report an error