zig/example
Andrew Kelley 3671582c15 syntax: functions require return type. remove ->
The purpose of this is:

 * Only one way to do things
 * Changing a function with void return type to return a possible
   error becomes a 1 character change, subtly encouraging
   people to use errors.

See #632

Here are some imperfect sed commands for performing this update:

remove arrow:

```
sed -i 's/\(\bfn\b.*\)-> /\1/g' $(find . -name "*.zig")
```

add void:

```
sed -i 's/\(\bfn\b.*\))\s*{/\1) void {/g' $(find ../ -name "*.zig")
```

Some cleanup may be necessary, but this should do the bulk of the work.
2018-01-25 04:10:11 -05:00
..
cat syntax: functions require return type. remove -> 2018-01-25 04:10:11 -05:00
guess_number syntax: functions require return type. remove -> 2018-01-25 04:10:11 -05:00
hello_world syntax: functions require return type. remove -> 2018-01-25 04:10:11 -05:00
mix_o_files syntax: functions require return type. remove -> 2018-01-25 04:10:11 -05:00
shared_library syntax: functions require return type. remove -> 2018-01-25 04:10:11 -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