...

Text file src/cuelang.org/go/encoding/protobuf/textproto/testdata/encoder/simple.txtar

Documentation: cuelang.org/go/encoding/protobuf/textproto/testdata/encoder

     1-- value.cue --
     2a: 1
     3b: 2
     4c: 3.4
     5
     6d: "foo\u1234"
     7e: '\000'
     8
     9f: false
    10// Doc comment
    11t: true
    12
    13notConcrete: string
    14-- out/encode --
    15a: 1
    16b: 2
    17c: 3.4
    18d: "fooሴ"
    19e: "\x00"
    20f: false
    21# Doc comment
    22t: true

View as plain text