zig/example
Andrew Kelley d8f6388b63 if statements can be const expr evaluated
also introduce error for unnecessary if statement
but if the condition depends on a compile variable, then
the if statement is OK
2016-02-09 18:53:28 -07:00
..
cat if statements can be const expr evaluated 2016-02-09 18:53:28 -07:00
guess_number std: remove auto flushing of stderr. use printf 2016-02-06 19:48:42 -07:00
hello_world c_import of stdio.h works for some functions 2016-01-27 23:23:02 -07:00
shared_library syntax: back to -> for return type, no more => 2016-01-25 17:08:18 -07:00
README.md add link to tetris example 2016-02-07 22:40:58 -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.

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.