Home | History | Annotate | Download | only in progs

Lines Matching refs:Println

16 	fmt.Println("type:", reflect.TypeOf(x))
27 fmt.Println("type:", v.Type())
28 fmt.Println("kind is float64:", v.Kind() == reflect.Float64)
29 fmt.Println("value:", v.Float())
37 fmt.Println("type:", v.Type()) // uint8.
38 fmt.Println("kind is uint8: ", v.Kind() == reflect.Uint8) // true.
51 fmt.Println(y)
54 fmt.Println(v.Interface())
73 fmt.Println("settability of v:", v.CanSet())
91 fmt.Println("type of p:", p.Type())
92 fmt.Println("settability of p:", p.CanSet())
96 fmt.Println("settability of v:", v.CanSet())
100 fmt.Println(v.Interface())
101 fmt.Println(x)
123 fmt.Println("t is now", t)
130 fmt.Println("value:", reflect.ValueOf(x))