diff options
Diffstat (limited to 'server/src/main.cpp')
| -rw-r--r-- | server/src/main.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/server/src/main.cpp b/server/src/main.cpp new file mode 100644 index 0000000..26bee21 --- /dev/null +++ b/server/src/main.cpp @@ -0,0 +1,11 @@ +#include <cstdio> + +int main(int argc, char* argv[]) +{ + if (argc != 2) { + std::printf("The size of the hash table is needed"); + return 1; + } + + return 0; +} |