diff options
author | Preston Pan <ret2pop@gmail.com> | 2024-12-27 20:05:06 -0800 |
---|---|---|
committer | Preston Pan <ret2pop@gmail.com> | 2024-12-27 20:05:06 -0800 |
commit | 63f11aaec8d21844a07fd27003a992c102a3a297 (patch) | |
tree | 6240a2c8561642d0c1d0b95148d6c868c7855a4a /client/main.c | |
parent | fd14f6fbf8206589d2a0ad8f0793845cb8faf1d7 (diff) |
make directory structure for client
Diffstat (limited to 'client/main.c')
-rw-r--r-- | client/main.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/client/main.c b/client/main.c new file mode 100644 index 0000000..3587a00 --- /dev/null +++ b/client/main.c @@ -0,0 +1,6 @@ +#include <stdio.h> + +int main(int argc, char **argv) { + printf("HELLO WORLD\n"); + return 0; +} |