...

Text file src/cuelang.org/go/cue/testdata/export/002.txtar

Documentation: cuelang.org/go/cue/testdata/export

     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 --
    32Leaks:  0
    33Freed:  1
    34Reused: 0
    35Allocs: 1
    36Retain: 0
    37
    38Unifications: 1
    39Conjuncts:    2
    40Disjuncts:    1
    41-- out/eval --
    42(bytes){ 'hello\nworld' }

View as plain text