github.com/solo-io/cue@v0.4.7/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 --
    32  (bytes){ 'hello\nworld' }