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