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....@@ -62,7 +62,6 @@ compromises backward compatibility.
62 * Ability to declare dependencies as Git URLS with commit locking (can62 * Ability to declare dependencies as Git URLS with commit locking (can
63 provide a tag or sha256).63 provide a tag or sha256).
64 * Include documentation generator.64 * Include documentation generator.
65 * Shebang line OK so language can be used for "scripting" as well.
66 * Compiler exposes itself as a library.65 * Compiler exposes itself as a library.
67 * Support for all popular architectures and operating systems.66 * Support for all popular architectures and operating systems.
6867
...@@ -123,5 +122,8 @@ To fix this, you have 2 options:...@@ -123,5 +122,8 @@ To fix this, you have 2 options:
123122
124## Community123## Community
125124
125 * IRC chat: `#zig` on Freenode.
126 * Reddit: [/r/zig](https://www.reddit.com/r/zig)
127
126Zig is in its infancy. However one place you can gather to chat is the `#zig`128Zig is in its infancy. However one place you can gather to chat is the `#zig`
127IRC channel on Freenode.129IRC channel on Freenode.
example/README.md+2-2
...@@ -9,10 +9,10 @@...@@ -9,10 +9,10 @@
9 * **guess_number** - simple console game where you guess the number the9 * **guess_number** - simple console game where you guess the number the
10 computer is thinking of and it says higher or lower. No dependency on10 computer is thinking of and it says higher or lower. No dependency on
11 libc.11 libc.
12 * **cat** - implementation of the `cat` UNIX utility in Zig, with no dependency
13 on libc.
1214
13## Work-In-Progress Examples15## Work-In-Progress Examples
1416
15 * **cat** - implementation of the `cat` UNIX utility in Zig, with no dependency
16 on libc.
17 * **shared_library** - demonstration of building a shared library and generating17 * **shared_library** - demonstration of building a shared library and generating
18 a header file and documentation for interop with C code.18 a header file and documentation for interop with C code.