zig/example
Andrew Kelley d10bbd28e9 use lld instead of system linker 2017-03-13 11:54:56 -04:00
..
cat fix examples 2017-02-26 14:35:30 -05:00
guess_number break off some of std.io into std.fmt, generalize printf 2017-03-09 19:12:15 -05:00
hello_world use lld instead of system linker 2017-03-13 11:54:56 -04:00
shared_library restore shared library functionality 2016-09-01 11:05:36 -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.