fcbb7426fa
See #770 To help automatically translate code, see the zig-fmt-pointer-reform-2 branch. This will convert all & into *. Due to the syntax ambiguity (which is why we are making this change), even address-of & will turn into *, so you'll have to manually fix thes instances. You will be guaranteed to get compile errors for them - expected 'type', found 'foo' |
||
---|---|---|
.. | ||
cat | ||
guess_number | ||
hello_world | ||
mix_o_files | ||
shared_library | ||
README.md |
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