Initial commit

This commit is contained in:
2024-01-27 21:06:02 +01:00
commit ac937cc86a
8 changed files with 234 additions and 0 deletions

18
run.sh Executable file
View File

@@ -0,0 +1,18 @@
#!/bin/bash
set -eu
make -B
./server &
sleep 0.01
server_pid=$!
if [ "$#" -gt 0 ]; then
gdb client
else
./client
fi
kill $server_pid