...

Text file src/go/doc/comment/testdata/text3.txt

Documentation: go/doc/comment/testdata

     1{"TextWidth": 30}
     2-- input --
     3Package gob manages streams of gobs - binary values exchanged between an
     4Encoder (transmitter) and a Decoder (receiver). A typical use is
     5transporting arguments and results of remote procedure calls (RPCs) such as
     6those provided by package "net/rpc".
     7
     8The implementation compiles a custom codec for each data type in the stream
     9and is most efficient when a single Encoder is used to transmit a stream of
    10values, amortizing the cost of compilation.
    11-- text --
    12Package gob manages streams
    13of gobs - binary values
    14exchanged between an Encoder
    15(transmitter) and a Decoder
    16(receiver). A typical use is
    17transporting arguments and
    18results of remote procedure
    19calls (RPCs) such as those
    20provided by package "net/rpc".
    21
    22The implementation compiles
    23a custom codec for each data
    24type in the stream and is
    25most efficient when a single
    26Encoder is used to transmit a
    27stream of values, amortizing
    28the cost of compilation.

View as plain text