diff --git a/src/main.cpp b/src/main.cpp index e69de29..7d843fa 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -0,0 +1,20 @@ +/* Copyright (C) 2023 Harry Clark - Student No. 12340530 */ +/* DATE: 13/03/23 */ + +/* HUFFMAN CODE DEMONSTRATION */ +/* JUST A LITTLE THING I WANTED TO MAKE FOR FUN AFTER WATCHING A +/* TOM SCOTT VIDEO ABOUT THE SUBJECT */ + +/* THIS IS THE MAIN FILE */ + +#ifndef MAIN +#define MAIN + +#include "huffman_types.h" + +int main(int argc, char** argv) +{ + return 0; +} + +#endif