zig/example
Andrew Kelley 9e234d4208 breaking change to std.io API
* Merge io.InStream and io.OutStream into io.File
 * Introduce io.OutStream and io.InStream interfaces
   - io.File implements both of these
 * Move mem.IncrementingAllocator to heap.IncrementingAllocator

Instead of:

```
%return std.io.stderr.printf("hello\n");
```

now do:

```
std.debug.warn("hello\n");
```

To print to stdout, see `io.getStdOut()`.

 * Rename std.ArrayList.resizeDown to std.ArrayList.shrink.
2017-10-31 04:47:55 -04:00
..
cat breaking change to std.io API 2017-10-31 04:47:55 -04:00
guess_number breaking change to std.io API 2017-10-31 04:47:55 -04:00
hello_world breaking change to std.io API 2017-10-31 04:47:55 -04:00
mix_o_files update std.os.ChildProcess API 2017-09-26 01:01:49 -04:00
shared_library update std.os.ChildProcess API 2017-09-26 01:01:49 -04:00
README.md remove ?return and ?defer 2017-04-21 15:08:03 -04:00

Zig Examples

Working Examples

  • Tetris - A simple Tetris clone written in Zig. See andrewrk/tetris.
  • hello_world - demonstration of a printing a single line to stdout. One version depends on libc; one does not.
  • 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.
  • shared_library - demonstration of building a shared library and generating a header file for interop with C code.
  • mix_o_files - how to mix .zig and .c files together as object files