| author | |
| committer | |
| log | 1688ccb3dd8a7d42bb6b72c3658a96bf743cfcf5 |
| tree | 5fceb98da304c98672e9a14098af0da810c27091 |
| parent | 7f56e4ac16a7480036b8a2557f8176aae0d0d2b7 |
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 (can | 62 | * 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. |
| 68 | 67 | ||
| ... | @@ -123,5 +122,8 @@ To fix this, you have 2 options: | ... | @@ -123,5 +122,8 @@ To fix this, you have 2 options: |
| 123 | 122 | ||
| 124 | ## Community | 123 | ## Community |
| 125 | 124 | ||
| 125 | * IRC chat: `#zig` on Freenode. | ||
| 126 | * Reddit: [/r/zig](https://www.reddit.com/r/zig) | ||
| 127 | |||
| 126 | Zig is in its infancy. However one place you can gather to chat is the `#zig` | 128 | Zig is in its infancy. However one place you can gather to chat is the `#zig` |
| 127 | IRC channel on Freenode. | 129 | IRC 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 the | 9 | * **guess_number** - simple console game where you guess the number the |
| 10 | computer is thinking of and it says higher or lower. No dependency on | 10 | 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. | ||
| 12 | 14 | ||
| 13 | ## Work-In-Progress Examples | 15 | ## Work-In-Progress Examples |
| 14 | 16 | ||
| 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 generating | 17 | * **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. |