From 1688ccb3dd8a7d42bb6b72c3658a96bf743cfcf5 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Thu, 14 Apr 2016 11:34:46 -0700 Subject: [PATCH] update README --- README.md | 4 +++- example/README.md | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index aed043703e..c648cbcb0e 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/example/README.md b/example/README.md index a3bebc6280..5b53f596b8 100644 --- a/example/README.md +++ b/example/README.md @@ -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.