Added header for compiler versions in Readme

Author Mitja Felicijan <mitja.felicijan@gmail.com> 2024-09-18 21:24:07 +0200
Committer Mitja Felicijan <mitja.felicijan@gmail.com> 2024-09-18 21:24:07 +0200
Commit 0fe94b0237bf1ef0212e129abfb56019d3e1c361 (patch)
-rw-r--r-- README.md 10
1 files changed, 5 insertions, 5 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                          | Compiler   | What does it do?                                               |
14
|----------------------------------|------------|----------------------------------------------------------------|
14
|----------------------------------|------------|----------------------------------------------------------------|
15
| [c-asm](./c-asm)                 | clang-17    | Calls a function written in ASM from C code.                   |
15
| [c-asm](./c-asm)                 | clang-17   | Calls a function written in ASM from C code.                   |
16
| [c-embed](./c-embed)             | clang-17    | Embedding external resources in compiled binary.               |
16
| [c-embed](./c-embed)             | clang-17   | Embedding external resources in compiled binary.               |
17
| [c-signals](./c-signals)         | clang-17    | Uses SIGUSR1 and SIGUSR2 as IPC mechanism.                     |
17
| [c-signals](./c-signals)         | clang-17   | Uses SIGUSR1 and SIGUSR2 as IPC mechanism.                     |
18
| [c-structs](./c-structs)         | clang-17    | Saves and reads structs in/from binary files.                  |
18
| [c-structs](./c-structs)         | clang-17   | Saves and reads structs in/from binary files.                  |
19
| [zig-c-interop](./zig-c-interop) | zig-0.11.0 | 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)             | zig-0.11.0 | 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)     | zig-0.11.0 | 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.  |
...