1
0
Fork 0
mirror of https://github.com/Reuh/candran.git synced 2025-10-27 09:59:29 +00:00
This commit is contained in:
Étienne Fildadut 2021-06-07 17:24:25 +02:00
parent 6a1f745015
commit 584dac17db

View file

@ -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