forked from zigbyexample/zigbyexample.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.md
24 lines (22 loc) · 1.14 KB
/
index.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
layout: default
title: Zig by Example
nav_order: 0
description: "Learn How to use Zig's Standard Library, by small examples."
permalink: /
---
Learn How to use Zig's Standard Library, by small examples.
It is not a complete explanation but rather just plain good code.
This is for all those people who love to learn by code, rather than trying to decipher endless pages of documention.
- [Atomics](https://zigbyexample.github.io/atomics)
- [Compressing Data](https://zigbyexample.github.io/compressing_data)
- [Command-Line Arguments](https://zigbyexample.github.io/command_line_arguments)
- [Directory Listing](https://zigbyexample.github.io/directory_listing)
- [Hashing](https://zigbyexample.github.io/hashing)
- [HTTP Client](https://zigbyexample.github.io/http-client)
- [JSON](https://zigbyexample.github.io/json)
- [Mutex](https://zigbyexample.github.io/mutex)
- [Reading input](https://zigbyexample.github.io/read_input)
- [Read/Write File](https://zigbyexample.github.io/read_write_file)
- [Spawning Subprocess's](https://zigbyexample.github.io/spawn_subprocess)
- [TCP Connection](https://zigbyexample.github.io/tcp_connection)