This repository contains solutions to various challenges from Coding Challenges.
A command-line tool thhat count lines, words, bytes and chas in a file or standard input.
Prerequisites:
- Make sure Go is installed.
- Navigate to directory:
cd wc
- Build the Executable:
go build -o ccwc
- Run the Executable:
./ccwc -l -w test.txt
OR
cat test.txt | ./ccwc