authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2016-02-05 00:13:37-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2016-02-05 00:13:37-07:00
log5f0a9a569e506d36cba1c959961cbd067f9fd722
tree6357023deef5b724c895505a398133e550814f2c
parent663a1d0cd56c933f6ce85c16924e161b5cb55a8a

another planned feature complete


1 files changed, 2 insertions(+), 2 deletions(-)

README.md+2-2
...@@ -36,6 +36,7 @@ compromises backward compatibility....@@ -36,6 +36,7 @@ compromises backward compatibility.
36 for example, use GDB to debug your software.36 for example, use GDB to debug your software.
37 * Release mode produces heavily optimized code. What other projects call37 * Release mode produces heavily optimized code. What other projects call
38 "Link Time Optimization" Zig does automatically.38 "Link Time Optimization" Zig does automatically.
39 * Mark functions as tests and automatically run them with `zig test`.
39 * Supported architectures: `x86_64`40 * Supported architectures: `x86_64`
40 * Supported operating systems: Linux41 * Supported operating systems: Linux
4142
...@@ -48,8 +49,7 @@ compromises backward compatibility....@@ -48,8 +49,7 @@ compromises backward compatibility.
48 * Eliminate the need for configure, make, cmake, etc.49 * Eliminate the need for configure, make, cmake, etc.
49 * Eliminate the preprocessor, but (most) everything you can accomplish with50 * Eliminate the preprocessor, but (most) everything you can accomplish with
50 the preprocessor, you can accomplish directly in the language.51 the preprocessor, you can accomplish directly in the language.
51 * Ability to mark functions as test and automatically run them in test mode.52 * Automatically provide test coverage.
52 Automatically provide test coverage.
53 * Friendly toward package maintainers.53 * Friendly toward package maintainers.
54 * Ability to declare dependencies as Git URLS with commit locking (can54 * Ability to declare dependencies as Git URLS with commit locking (can
55 provide a tag or sha1).55 provide a tag or sha1).