| ... | ... | @@ -23,15 +23,15 @@ compromises backward compatibility. |
| 23 | 23 | * Generics so that one can write efficient data structures that work for any |
| 24 | 24 | data type. |
| 25 | 25 | * Ability to run arbitrary code at compile time and generate code. |
| 26 | * No null pointer. Convenient syntax for dealing with a maybe type so that |
| 27 | null pointer is not missed. |
| 26 | 28 | * A type which represents an error and has some convenience syntax with |
| 27 | 29 | regards to resources. |
| 28 | 30 | * Defer statement. |
| 29 | | * Memory zeroed by default, unless you explicitly ask for uninitialized memory. |
| 30 | 31 | * Eliminate the need for configure, make, cmake, etc. |
| 31 | 32 | * Eliminate the need for header files (when using zig internally). |
| 32 | 33 | * Tagged union enum type. |
| 33 | 34 | * Resilient to parsing errors to make IDE integration work well. |
| 34 | | * Source code is UTF-8. |
| 35 | 35 | * Ability to mark functions as test and automatically run them in test mode. |
| 36 | 36 | This mode should automatically provide test coverage. |
| 37 | 37 | * Friendly toward package maintainers. |
| ... | ... | @@ -39,14 +39,12 @@ compromises backward compatibility. |
| 39 | 39 | provide a tag or sha1). |
| 40 | 40 | * Include documentation generator. |
| 41 | 41 | * Shebang line OK so language can be used for "scripting" as well. |
| 42 | | * No null pointer. Convenient syntax for dealing with a maybe type so that |
| 43 | | null pointer is not missed. |
| 44 | 42 | |
| 45 | 43 | ### Current Status |
| 46 | 44 | |
| 47 | 45 | * Have a look in the examples/ folder to see some code examples. |
| 48 | 46 | * Some language features available such as loops, inline assembly, expressions, |
| 49 | | literals, functions. |
| 47 | literals, functions, importing other files. |
| 50 | 48 | * Only Linux x86_64 is supported. |
| 51 | 49 | * Only building for the native target is supported. |
| 52 | 50 | * Optimized machine code that Zig produces is indistinguishable from |
| ... | ... | @@ -55,7 +53,6 @@ compromises backward compatibility. |
| 55 | 53 | header files. |
| 56 | 54 | * The binaries produced by Zig have complete debugging information so you can, |
| 57 | 55 | for example, use GDB to debug your software. |
| 58 | | * Inline assembly is supported. |
| 59 | 56 | |
| 60 | 57 | ## Building |
| 61 | 58 | |