zig/example
Andrew Kelley b735764898
different array literal syntax when inferring the size
old syntax:  []i32{1, 2, 3}
new syntax: [_]i32{1, 2, 3}

closes #1797
2019-06-09 19:26:32 -04:00
..
cat tests passing on linux 2019-05-26 23:35:26 -04:00
guess_number tests passing on linux 2019-05-26 23:35:26 -04:00
hello_world revert hello world examples. macos tests passing 2019-05-27 15:48:31 -04:00
mix_o_files different array literal syntax when inferring the size 2019-06-09 19:26:32 -04:00
shared_library different array literal syntax when inferring the size 2019-06-09 19:26:32 -04:00
README.md delete rogue file 2018-11-16 14:26:53 -05:00

README.md

Zig 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