build.zig | 2 +- example/README.md | 14 ------- example/cat/main.zig | 70 -------------------------------- example/guess_number/main.zig | 47 --------------------- example/hello_world/hello.zig | 9 ---- example/hello_world/hello_libc.zig | 13 ------ example/hello_world/hello_windows.zig | 8 ---- example/mix_o_files/base64.zig | 13 ------ example/mix_o_files/build.zig | 17 -------- example/mix_o_files/test.c | 20 --------- example/shared_library/build.zig | 17 -------- example/shared_library/mathtest.zig | 3 -- example/shared_library/test.c | 7 ---- test/build_examples.zig | 31 -------------- test/standalone.zig | 31 ++++++++++++++ test/standalone/cat/main.zig | 70 ++++++++++++++++++++++++++++++++ test/standalone/guess_number/main.zig | 47 +++++++++++++++++++++ test/standalone/hello_world/hello.zig | 9 ++++ test/standalone/hello_world/hello_libc.zig | 13 ++++++ test/standalone/mix_o_files/base64.zig | 13 ++++++ test/standalone/mix_o_files/build.zig | 17 ++++++++ test/standalone/mix_o_files/test.c | 20 +++++++++ test/standalone/shared_library/build.zig | 17 ++++++++ test/standalone/shared_library/mathtest.zig | 3 ++ test/standalone/shared_library/test.c | 7 ++++ test/tests.zig | 22 +++++----- 26 files changed, 259 insertions(+), 281 deletions(-)