| ... | ... | @@ -16,9 +16,9 @@ Zig instead of e.g. cmake. |
| 16 | 16 | |
| 17 | 17 | * Compatible with C libraries with no wrapper necessary. Directly include |
| 18 | 18 | C .h files and get access to the functions and symbols therein. |
| 19 | | * Compile units do not depend on libc unless explicitly linked. |
| 20 | 19 | * Provides standard library which competes with the C standard library and is |
| 21 | | always compiled against statically in source form. |
| 20 | always compiled against statically in source form. Compile units do not |
| 21 | depend on libc unless explicitly linked. |
| 22 | 22 | * Nullable type instead of null pointers. |
| 23 | 23 | * Tagged union type instead of raw unions. |
| 24 | 24 | * Generics so that one can write efficient data structures that work for any |
| ... | ... | @@ -45,12 +45,12 @@ Zig instead of e.g. cmake. |
| 45 | 45 | * Zig Build System competes with make, cmake, autotools, SCons, etc. |
| 46 | 46 | * In addition to creating executables, creating a C library is a primary use |
| 47 | 47 | case. You can export an auto-generated .h file. |
| 48 | | * Standard library supports OS abstractions for: |
| 48 | * Standard library supports Operating System abstractions for: |
| 49 | 49 | * `x86_64` `linux` |
| 50 | 50 | * Support for all popular operating systems and architectures is planned. |
| 51 | | * For Operating System development, Zig supports all architectures that LLVM |
| 52 | | does. All the standard library that does not depend on an OS is available |
| 53 | | to you in freestanding mode. |
| 51 | * For OS development, Zig supports all architectures that LLVM does. All the |
| 52 | standard library that does not depend on an OS is available to you in |
| 53 | freestanding mode. |
| 54 | 54 | |
| 55 | 55 | ## Community |
| 56 | 56 | |
| ... | ... | @@ -60,7 +60,7 @@ Zig instead of e.g. cmake. |
| 60 | 60 | |
| 61 | 61 | ## Building |
| 62 | 62 | |
| 63 | | [](https://travis-ci.org/andrewrk/zig) |
| 63 | [](https://travis-ci.org/zig-lang/zig) |
| 64 | 64 | |
| 65 | 65 | ### Dependencies |
| 66 | 66 | |