zig/example
Jimmi Holst Christensen 8139c5a516
New Zig formal grammar (#1685)
Reverted #1628 and changed the grammar+parser of the language to not allow certain expr where types are expected
2018-11-13 05:08:37 -08:00
..
cat New Zig formal grammar (#1685) 2018-11-13 05:08:37 -08:00
guess_number update std lib API for I/O 2018-09-30 17:28:35 -04:00
hello_world compiling on mingw is now supported (#1542) 2018-09-18 00:13:17 -04:00
mix_o_files New Zig formal grammar (#1685) 2018-11-13 05:08:37 -08:00
shared_library New Zig formal grammar (#1685) 2018-11-13 05:08:37 -08: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