| ... | ... | @@ -127,3 +127,14 @@ produced .gcov files. |
| 127 | 127 | * [zig-mode](https://github.com/AndreaOrru/zig-mode) - Emacs integration |
| 128 | 128 | * [zig.vim](https://github.com/zig-lang/zig.vim) - Vim configuration files |
| 129 | 129 | * [vscode-zig](https://github.com/zig-lang/vscode-zig) - Visual Studio Code extension |
| 130 | |
| 131 | ## The Zen of Zig |
| 132 | |
| 133 | * Communicate intent precisely. |
| 134 | * Edge cases matter. |
| 135 | * Favor reading code over writing code. |
| 136 | * Only one obvious way to do things. |
| 137 | * Runtime crashes are better than bugs. |
| 138 | * Compile errors are better than runtime crashes. |
| 139 | * Coding style is petty. |
| 140 | * Together we serve the users. |