An open API service indexing awesome lists of open source software.

https://github.com/baranasoftware/zig-examples

A collection of Zig examples.
https://github.com/baranasoftware/zig-examples

zig ziglang

Last synced: 19 days ago
JSON representation

A collection of Zig examples.

Awesome Lists containing this project

README

          

A collections of Zig examples

* [Unicode Support](hello.zig)
* [Random Numbers](rand.zig)
* [Using Pacakges](pacakges.zig)
* [Basic Types](basictypes.zig)
* [For, While Loops](loops.zig)
* [Strings, Vector, Struct, Unions, Arrays, Slices](types.zig)
* [Command line arguments](args.zig)
* [CPU endian](endian.zig)
* [Thread example](thread.zig)
* [Single thread TCP server](server1.zig)
* [Using single copy TCP server](server2.zig)
* [Improved single threaded TCP server](server3.zig)
* [Single thread TCP server(Vectored I/O)](server4.zig)
* [Multi-threaded server](multi-thread.zig)
* [Multi-threaded - thread pool](multi-thread2.zig)
* [Non-Blocking I/O](non-blocking.zig)
* [Non-Blocking I/O - Poll](poll.zig)
* [Non-Blocking I/O - Pollv2](poll2.zig)
* [Non-Blocking I/O - Pollv3](poll3.zig)
* [Non-Blocking I/O - epoll](epoll.zig)
* [Non-blocking I/O - kqueue](kqueue.zig)
* [Task scheduler](task.zig)
* [Task scheduler - with a priority queue](task2.zig)