This project implements a file compression tool using Huffman encoding and decoding algorithms using the Zig programming language.
- Zig version 0.14.0
 
Ensure you have the correct version of Zig installed before building and running the project.
To build the project, run the following command:
zig buildAfter building, you can run the project using:
#compress:
zig build run -- -c inputfilename outputfilename
#decompress:
zig build run -- -d inputfilename outputfilename #where intputfilename is the outputfilename of the previous command-c for compression, -d for decompression
This project is licensed under the Apache License.