Added version for Zig compiler

Author Mitja Felicijan <mitja.felicijan@gmail.com> 2024-09-18 21:22:20 +0200
Committer Mitja Felicijan <mitja.felicijan@gmail.com> 2024-09-18 21:22:20 +0200
Commit 767f15887b92eec317934ced043df81cef7d418f (patch)
-rw-r--r-- README.md 30
1 files changed, 15 insertions, 15 deletions
diff --git a/README.md b/README.md
...
10
Every test has it's own `Makefile` so please check that before you try
10
Every test has it's own `Makefile` so please check that before you try
11
running it.
11
running it.
12
  
12
  
13
| Example                          | What does it do?                                               |
13
| Example                          |            | What does it do?                                               |
14
|----------------------------------|----------------------------------------------------------------|
14
|----------------------------------|------------|----------------------------------------------------------------|
15
| [c-asm](./c-asm)                 | Calls a function written in ASM from C code.                   |
15
| [c-asm](./c-asm)                 |            | Calls a function written in ASM from C code.                   |
16
| [c-embed](./c-embed)             | Embedding external resources in compiled binary.               |
16
| [c-embed](./c-embed)             |            | Embedding external resources in compiled binary.               |
17
| [c-signals](./c-signals)         | Uses SIGUSR1 and SIGUSR2 as IPC mechanism.                     |
17
| [c-signals](./c-signals)         |            | Uses SIGUSR1 and SIGUSR2 as IPC mechanism.                     |
18
| [c-structs](./c-structs)         | Saves and reads structs in/from binary files.                  |
18
| [c-structs](./c-structs)         |            | Saves and reads structs in/from binary files.                  |
19
| [zig-c-interop](./zig-c-interop) | Uses functions written in C from Zig code.                     |
19
| [zig-c-interop](./zig-c-interop) | zig-0.11.0 | Uses functions written in C from Zig code.                     |
20
| [zig-ppm](./zig-ppm)             | Creates an image with random pixels in PPM image format.       |
20
| [zig-ppm](./zig-ppm)             | zig-0.11.0 | Creates an image with random pixels in PPM image format.       |
21
| [zig-structs](./zig-structs)     | Serialization of a struct into JSON and then reading it back.  |
21
| [zig-structs](./zig-structs)     | zig-0.11.0 | Serialization of a struct into JSON and then reading it back.  |
22
| [zig-telnet](./zig-telnet)       | Connects to Redis server like it is a basic telnet server.     |
22
| [zig-telnet](./zig-telnet)       | zig-0.11.0 | Connects to Redis server like it is a basic telnet server.     |
23
| [zig-x11](./zig-x11)             | Uses X11 to create a basic window without any bindings needed. |
23
| [zig-x11](./zig-x11)             | zig-0.11.0 | Uses X11 to create a basic window without any bindings needed. |
24
| [zig-http](./zig-http)           | Basic example of a HTTP 1.1 server without any routing etc.    |
24
| [zig-http](./zig-http)           | zig-0.11.0 | Basic example of a HTTP 1.1 server without any routing etc.    |
25
| [zig-x11-box](./zig-x11-box)     | Move a box around with arrow keys with Xlib and Zig.           |
25
| [zig-x11-box](./zig-x11-box)     | zig-0.11.0 | Move a box around with arrow keys with Xlib and Zig.           |
26
| [zig-kv-store](./zig-kv-store)   | Simple Key-value store that mimics memcached written in Zig.   |
26
| [zig-kv-store](./zig-kv-store)   | zig-0.11.0 | Simple Key-value store that mimics memcached written in Zig.   |
27
| [zig-wad](./zig-wad)             | Reads doom.wad and extracts the identification header.         |
27
| [zig-wad](./zig-wad)             | zig-0.11.0 | Reads doom.wad and extracts the identification header.         |