From 584dac17db836e39bd2f150d2280034c79538e63 Mon Sep 17 00:00:00 2001 From: Reuh Date: Mon, 7 Jun 2021 17:24:25 +0200 Subject: [PATCH] Typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c9215ba..083e23a 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,9 @@ Unlike Moonscript, Candran tries to stay close to the Lua syntax, and existing L ````lua #import("lib.thing") -- static import -#local debug or= false +#local debug = false -#if debug +#if debug then # define("log(...)", "print(...)") #else # define("log(...)", "") -- remove calls to log from the compiled code when debug is true