June 2017
Intermediate to advanced
400 pages
10h 32m
English
These steps cover writing and running your application:
package bytestrings import ( "bytes" "io" "io/ioutil" ) // Buffer demonstrates some tricks for initializing bytes //Buffers // These buffers implement an io.Reader interface func Buffer(rawString string) *bytes.Buffer { // we'll start with a string encoded into raw bytes rawBytes := []byte(rawString) // there are a number of ways to ...