diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2025-01-17 00:29:03 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2025-01-17 00:53:22 +0100 |
commit | 4f2a23efa8b144810b867c9c81587365e2c87d3f (patch) | |
tree | 441aee4d1a82e64d0bba4d2d4e7b7af70daa33df /example-network/Makefile | |
parent | b0159319727fd4cd15f62898b737786ae0e872a5 (diff) | |
download | zig-playground-4f2a23efa8b144810b867c9c81587365e2c87d3f.tar.gz zig-playground-4f2a23efa8b144810b867c9c81587365e2c87d3f.zip |
net: simple tcp client server example
Diffstat (limited to 'example-network/Makefile')
-rw-r--r-- | example-network/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/example-network/Makefile b/example-network/Makefile new file mode 100644 index 0000000..8fc8a1c --- /dev/null +++ b/example-network/Makefile @@ -0,0 +1,4 @@ +s: + zig run basic.zig -- -s +c: + zig run basic.zig |