zig/example
Andrew Kelley d5346d7a80 remove `?return` and `?defer`
closes #309
2017-04-21 15:08:03 -04:00
..
cat API for command line args 2017-04-04 00:17:24 -04:00
guess_number std.rand API follows idiomatic convention for init 2017-04-18 02:47:10 -04:00
hello_world API for command line args 2017-04-04 00:17:24 -04:00
mix_o_files add example which exercises addObject in the zig build system 2017-04-21 02:26:48 -04:00
shared_library zig build system supports building a library 2017-04-21 01:56:12 -04: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