cuelang.org/go@v0.10.1/cue/testdata/export/002.txtar (about) 1 # DO NOT EDIT; generated by go run testdata/gen.go 2 # 3 -- in.cue -- 4 'hello\nworld' 5 -- out/def -- 6 ''' 7 hello 8 world 9 ''' 10 -- out/export -- 11 ''' 12 hello 13 world 14 ''' 15 -- out/yaml -- 16 |- 17 hello 18 world 19 -- out/json -- 20 "aGVsbG8Kd29ybGQ=" 21 -- out/legacy-debug -- 22 ''' 23 hello 24 world 25 ''' 26 -- out/compile -- 27 --- in.cue 28 { 29 'hello\nworld' 30 } 31 -- out/eval/stats -- 32 Leaks: 0 33 Freed: 1 34 Reused: 0 35 Allocs: 1 36 Retain: 0 37 38 Unifications: 1 39 Conjuncts: 2 40 Disjuncts: 1 41 -- out/eval -- 42 (bytes){ 'hello\nworld' }