From 221e5b188c4aaef9667c8e397d7fac21a8ac8fbd Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 7 Aug 2017 19:11:55 -0400 Subject: [PATCH] README: add the zen of zig --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 999f79e763..6c734e3ca3 100644 --- a/README.md +++ b/README.md @@ -127,3 +127,14 @@ produced .gcov files. * [zig-mode](https://github.com/AndreaOrru/zig-mode) - Emacs integration * [zig.vim](https://github.com/zig-lang/zig.vim) - Vim configuration files * [vscode-zig](https://github.com/zig-lang/vscode-zig) - Visual Studio Code extension + +## The Zen of Zig + + * Communicate intent precisely. + * Edge cases matter. + * Favor reading code over writing code. + * Only one obvious way to do things. + * Runtime crashes are better than bugs. + * Compile errors are better than runtime crashes. + * Coding style is petty. + * Together we serve the users.