zig/example
Andrew Kelley 6a7f3c8df7 std: make parsing an unsigned number generic 2016-05-13 11:11:55 -07:00
..
cat cat example: fix not flushing stderr 2016-04-24 11:23:46 -07:00
guess_number std: make parsing an unsigned number generic 2016-05-13 11:11:55 -07:00
hello_world rewrite how importing works 2016-03-01 03:13:40 -07:00
shared_library syntax: back to -> for return type, no more => 2016-01-25 17:08:18 -07:00
README.md update README 2016-04-14 11:34:46 -07:00

README.md

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.

Work-In-Progress Examples

  • shared_library - demonstration of building a shared library and generating a header file and documentation for interop with C code.