diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2025-01-17 00:29:03 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2025-02-07 21:54:55 +0100 |
commit | de18e653850dbf7f8fc6536bed087b1bbd022dcd (patch) | |
tree | 1c961107ece287996b0d6c5b172dfc637dfc1c6b /example-network/Makefile | |
parent | dac11e0255f4e5990c730d680b1036b90930fb3c (diff) | |
download | zig-playground-de18e653850dbf7f8fc6536bed087b1bbd022dcd.tar.gz zig-playground-de18e653850dbf7f8fc6536bed087b1bbd022dcd.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 |