aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2016-05-13 10:59:43 -0700
committerAndrew Kelley <superjoe30@gmail.com>2016-05-13 10:59:43 -0700
commitb68aee4f34dffe60c099cba0a4ca56580e7a9cf5 (patch)
treeb0b4b16d52a81ef6030a05580ba98e099ee2bec9 /README.md
parent5d2f86116fe6c43d772e444d4519c64f33f9969d (diff)
downloadzig-b68aee4f34dffe60c099cba0a4ca56580e7a9cf5.tar.gz
zig-b68aee4f34dffe60c099cba0a4ca56580e7a9cf5.zip
we have generics now
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 367afa76df..1c4d149d53 100644
--- a/README.md
+++ b/README.md
@@ -33,6 +33,8 @@ compromises backward compatibility.
* Powerful constant expression evaluator. Generally, anything that *can* be
figured out at compile time *is* figured out at compile time.
* Tagged union enum type. No more accidentally reading the wrong union field.
+ * Generics so that one can write efficient data structures that work for any
+ data type.
* Easy to parse language so that humans and machines have no trouble with the
syntax.
* The binaries produced by Zig have complete debugging information so you can,
@@ -55,8 +57,6 @@ compromises backward compatibility.
* In addition to creating executables, creating a C library is a primary use
case. You can export an auto-generated .h file.
- * Generics so that one can write efficient data structures that work for any
- data type.
* Eliminate the need for configure, make, cmake, etc.
* Automatically provide test coverage.
* Ability to declare dependencies as Git URLS with commit locking (can