diff --git a/_content/tour/basics/type-inference.go b/_content/tour/basics/type-inference.go index b31193357a..e0d3a3e688 100644 --- a/_content/tour/basics/type-inference.go +++ b/_content/tour/basics/type-inference.go @@ -6,5 +6,5 @@ import "fmt" func main() { v := 42 // change me! - fmt.Printf("v is of type %T\n", v) + fmt.Printf("%v is of type %T\n", v, v) }