about summary refs log tree commit diff stats
path: root/server/src/main.cpp
blob: 26bee214d97d7cc46448e185a3d2175b963e011f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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;
}