LEFT | RIGHT |
1 package main | 1 package main |
2 | 2 |
3 import ( | 3 import ( |
4 "fmt" | 4 "fmt" |
5 "reflect" | 5 "reflect" |
6 ) | 6 ) |
7 | 7 |
8 func main() { | 8 func main() { |
9 var x float64 = 3.4 | 9 var x float64 = 3.4 |
10 fmt.Println("type:", reflect.TypeOf(x)) | 10 fmt.Println("type:", reflect.TypeOf(x)) |
11 // STOP OMIT | 11 // STOP OMIT |
| 12 // TODO(proppy): test output OMIT |
12 } | 13 } |
13 | 14 |
14 // STOP main OMIT | 15 // STOP main OMIT |
15 | 16 |
16 func f1() { | 17 func f1() { |
17 // START f1 OMIT | 18 // START f1 OMIT |
18 var x float64 = 3.4 | 19 var x float64 = 3.4 |
19 v := reflect.ValueOf(x) | 20 v := reflect.ValueOf(x) |
20 fmt.Println("type:", v.Type()) | 21 fmt.Println("type:", v.Type()) |
21 fmt.Println("kind is float64:", v.Kind() == reflect.Float64) | 22 fmt.Println("kind is float64:", v.Kind() == reflect.Float64) |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 f := s.Field(i) | 103 f := s.Field(i) |
103 fmt.Printf("%d: %s %s = %v\n", i, | 104 fmt.Printf("%d: %s %s = %v\n", i, |
104 typeOfT.Field(i).Name, f.Type(), f.Interface()) | 105 typeOfT.Field(i).Name, f.Type(), f.Interface()) |
105 } | 106 } |
106 // START f8b OMIT | 107 // START f8b OMIT |
107 s.Field(0).SetInt(77) | 108 s.Field(0).SetInt(77) |
108 s.Field(1).SetString("Sunset Strip") | 109 s.Field(1).SetString("Sunset Strip") |
109 fmt.Println("t is now", t) | 110 fmt.Println("t is now", t) |
110 // STOP OMIT | 111 // STOP OMIT |
111 } | 112 } |
LEFT | RIGHT |