zig/example
Andrew Kelley d917815d81 explicitly return from blocks
instead of last statement being expression value

closes #629
2017-12-22 00:50:30 -05:00
..
cat fix test failures 2017-11-10 16:32:37 -05:00
guess_number rename builtin.is_big_endian to builtin.endian 2017-12-04 10:36:31 -05:00
hello_world std.io: introduce buffered I/O and change API 2017-11-07 03:22:27 -05:00
mix_o_files move base64 functions into structs 2017-11-20 23:26:45 -07:00
shared_library explicitly return from blocks 2017-12-22 00:50:30 -05:00
README.md remove `?return` and `?defer` 2017-04-21 15:08:03 -04: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.
  • 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