From 5e9a51af1b856c93da2b206f3bf9a6ff3e6c1edb Mon Sep 17 00:00:00 2001 From: Michael Dusan Date: Sun, 27 Oct 2019 16:15:44 -0400 Subject: [PATCH] Updated FAQ (markdown) --- FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FAQ.md b/FAQ.md index 17a9923..9515cca 100644 --- a/FAQ.md +++ b/FAQ.md @@ -74,7 +74,7 @@ Zig stage1 compiler is currently implemented in c++ and will probably remain tha 2. The second step is to setup your code to not require an executable with `main()` or similar. Instead we define an `export` function to force the compiler into thinking the function must be compiled. Note this means you are probably going to have to use `zig build-obj` instead of `zig build-exe` or `zig run`. 3. The third step is to define a skeleton panic handler to override the more functional default. -Here is a boiler plate for a reduction; note little tricks like using easily seen variable names or literal values can help. For example, `a` is a difficult variable to grep for. And the value `99` is much easier to find than `0`: +Here is a reduction boiler plate. Note little tricks like using easily seen variable names or literal values can help. For example, `a` is a difficult variable to grep for. And the value `99` is much easier to find than `0`: ```zig export fn entry() void {