cuelang.org/go@v0.13.0/cue/testdata/export/001.txtar (about) 1 -- in.cue -- 2 'hello' 3 -- out/def -- 4 'hello' 5 -- out/export -- 6 'hello' 7 -- out/yaml -- 8 hello 9 -- out/json -- 10 "aGVsbG8=" 11 -- out/legacy-debug -- 12 'hello' 13 -- out/compile -- 14 --- in.cue 15 { 16 'hello' 17 } 18 -- out/eval/stats -- 19 Leaks: 0 20 Freed: 1 21 Reused: 0 22 Allocs: 1 23 Retain: 0 24 25 Unifications: 1 26 Conjuncts: 2 27 Disjuncts: 1 28 -- out/eval -- 29 (bytes){ 'hello' }