zig/example
Andrew Kelley 1e301b03a9 change std.rand.Rand.rangeUnsigned to std.rand.Rand.range
and make it support signed integers
2017-05-31 18:23:56 -04:00
..
cat change slicing syntax from ... to .. 2017-05-19 10:39:59 -04:00
guess_number change std.rand.Rand.rangeUnsigned to std.rand.Rand.range 2017-05-31 18:23:56 -04:00
hello_world
mix_o_files change slicing syntax from ... to .. 2017-05-19 10:39:59 -04:00
shared_library
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