Does Julia have something like #ifdef in C++ for conditional compile

Try,

@static if @isdefined(var)

Note the condition isn’t limited just to @isdefined, anything that evaluates at parse time should be fine.

9 Likes