zig/example
Andrew Kelley a2bd9f8912 std lib: modify allocator idiom
Before we accepted a nullable allocator for some stuff like
opening files. Now we require an allocator.

Use the mem.FixedBufferAllocator pattern if a bound on the amount
to allocate is known.

This also establishes the pattern that usually an allocator is the
first argument to a function (possibly after "self").

fix docs for std.cstr.addNullByte

self hosted compiler:
 * only build docs when explicitly asked to
 * clean up main
 * stub out zig fmt
2018-02-09 18:27:50 -05:00
..
cat std lib: modify allocator idiom 2018-02-09 18:27:50 -05:00
guess_number *WIP* error sets converting std lib 2018-01-31 22:48:40 -05:00
hello_world *WIP* error sets converting std lib 2018-01-31 22:48:40 -05:00
mix_o_files error sets - most tests passing 2018-02-08 02:08:45 -05:00
shared_library error sets - most tests passing 2018-02-08 02:08:45 -05:00
README.md remove ?return and ?defer 2017-04-21 15:08:03 -04:00

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