update README

This commit is contained in:
Andrew Kelley 2016-04-14 11:34:46 -07:00
parent 7f56e4ac16
commit 1688ccb3dd
2 changed files with 5 additions and 3 deletions

View File

@ -62,7 +62,6 @@ compromises backward compatibility.
* Ability to declare dependencies as Git URLS with commit locking (can
provide a tag or sha256).
* Include documentation generator.
* Shebang line OK so language can be used for "scripting" as well.
* Compiler exposes itself as a library.
* Support for all popular architectures and operating systems.
@ -123,5 +122,8 @@ To fix this, you have 2 options:
## Community
* IRC chat: `#zig` on Freenode.
* Reddit: [/r/zig](https://www.reddit.com/r/zig)
Zig is in its infancy. However one place you can gather to chat is the `#zig`
IRC channel on Freenode.

View File

@ -9,10 +9,10 @@
* **guess_number** - simple console game where you guess the number the
computer is thinking of and it says higher or lower. No dependency on
libc.
* **cat** - implementation of the `cat` UNIX utility in Zig, with no dependency
on libc.
## Work-In-Progress Examples
* **cat** - implementation of the `cat` UNIX utility in Zig, with no dependency
on libc.
* **shared_library** - demonstration of building a shared library and generating
a header file and documentation for interop with C code.