From aa96cd38718936e400162162c4af44e49a109da2 Mon Sep 17 00:00:00 2001 From: Martin Wickham Date: Tue, 30 Nov 2021 18:31:40 -0600 Subject: [PATCH] Fix binary location in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5025c78..1a56e02 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ This template tracks the master branch of Zig, *not* 0.8.1. It may not work wit ## How to use this template: -The src/ directory contains a main file for each day. Put your code there. The build command `zig build dayXX [target and mode options] -- [program args]` will build and run the specified day. You can also use `zig build install_dayXX [target and mode options]` to build the executable for a day and put it into `zig-cache/bin` without executing it. By default this template does not link libc, but you can set `should_link_libc` to `true` in build.zig to change that. If you have files with tests, add those files to the list of test files in build.zig. The command `zig build test` will run tests in all of these files. +The src/ directory contains a main file for each day. Put your code there. The build command `zig build dayXX [target and mode options] -- [program args]` will build and run the specified day. You can also use `zig build install_dayXX [target and mode options]` to build the executable for a day and put it into `zig-out/bin` without executing it. By default this template does not link libc, but you can set `should_link_libc` to `true` in build.zig to change that. If you have files with tests, add those files to the list of test files in build.zig. The command `zig build test` will run tests in all of these files. Each day contains a decl like this: ```zig