Exercises
- Visit the documentation page of the
bufiopackage that can be found at https://golang.org/pkg/bufio/. - Visit the documentation of the
iopackage at https://golang.org/pkg/io/. - Try to make
wc.gofaster. - Implement the functionality of
tabSpace.go, but try to read your input text files character by character instead of line by line. - Change the code of
tabSpace.goin order to be able to get the number of spaces that will replace a tab as a command-line argument. - Learn more information about the little endian and the big endian representations.