authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-08-07 19:11:55-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-08-07 19:11:55-04:00
log221e5b188c4aaef9667c8e397d7fac21a8ac8fbd
treeeaf7315cfd7736354e391a81b46f59b2342f16f8
parentf78ee534843845228910b9bfa52e810767d52fbf

README: add the zen of zig


1 files changed, 11 insertions(+), 0 deletions(-)

README.md+11
......@@ -127,3 +127,14 @@ produced .gcov files.
127127 * [zig-mode](https://github.com/AndreaOrru/zig-mode) - Emacs integration
128128 * [zig.vim](https://github.com/zig-lang/zig.vim) - Vim configuration files
129129 * [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.