cuelang.org/go@v0.13.0/cue/testdata/export/032.txtar (about) 1 -- in.cue -- 2 { 3 [string]: _ 4 foo: 3 5 } 6 -- out/def -- 7 foo: 3 8 ... 9 -- out/export -- 10 foo: 3 11 -- out/yaml -- 12 foo: 3 13 -- out/json -- 14 {"foo":3} 15 -- out/compile -- 16 --- in.cue 17 { 18 { 19 [string]: _ 20 foo: 3 21 } 22 } 23 -- out/eval/stats -- 24 Leaks: 0 25 Freed: 2 26 Reused: 0 27 Allocs: 2 28 Retain: 0 29 30 Unifications: 2 31 Conjuncts: 4 32 Disjuncts: 2 33 -- out/eval -- 34 (struct){ 35 foo: (int){ 3 } 36 }