authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2016-04-14 11:34:46-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2016-04-14 11:34:46-07:00
log1688ccb3dd8a7d42bb6b72c3658a96bf743cfcf5
tree5fceb98da304c98672e9a14098af0da810c27091
parent7f56e4ac16a7480036b8a2557f8176aae0d0d2b7

update README


2 files changed, 5 insertions(+), 3 deletions(-)

README.md+3-1
......@@ -62,7 +62,6 @@ compromises backward compatibility.
6262 * Ability to declare dependencies as Git URLS with commit locking (can
6363 provide a tag or sha256).
6464 * Include documentation generator.
65 * Shebang line OK so language can be used for "scripting" as well.
6665 * Compiler exposes itself as a library.
6766 * Support for all popular architectures and operating systems.
6867
......@@ -123,5 +122,8 @@ To fix this, you have 2 options:
123122
124123## Community
125124
125 * IRC chat: `#zig` on Freenode.
126 * Reddit: [/r/zig](https://www.reddit.com/r/zig)
127
126128Zig is in its infancy. However one place you can gather to chat is the `#zig`
127129IRC channel on Freenode.
example/README.md+2-2
......@@ -9,10 +9,10 @@
99 * **guess_number** - simple console game where you guess the number the
1010 computer is thinking of and it says higher or lower. No dependency on
1111 libc.
12 * **cat** - implementation of the `cat` UNIX utility in Zig, with no dependency
13 on libc.
1214
1315## Work-In-Progress Examples
1416
15 * **cat** - implementation of the `cat` UNIX utility in Zig, with no dependency
16 on libc.
1717 * **shared_library** - demonstration of building a shared library and generating
1818 a header file and documentation for interop with C code.