zig/example
Andrew Kelley e53b683bd3
Pointer Reform: proper slicing and indexing (#1053)
* enable slicing for single-item ptr to arrays
 * disable slicing for other single-item pointers
 * enable indexing for single-item ptr to arrays
 * disable indexing for other single-item pointers

see #770
closes #386
2018-06-04 22:11:14 -04:00
..
cat use * for pointer type instead of & 2018-05-31 17:28:07 -04:00
guess_number run zig fmt on some of the codebase 2018-05-26 23:00:29 -04:00
hello_world use * for pointer type instead of & 2018-05-31 17:28:07 -04:00
mix_o_files Pointer Reform: proper slicing and indexing (#1053) 2018-06-04 22:11:14 -04:00
shared_library use * for pointer type instead of & 2018-05-31 17:28:07 -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