On 1/20/22 18:07, forkit wrote:
> I have a line of code, that I do NOT want executed when -debug is passed
> in.
>
> enforce(!exists(fname), "Oop! That file already exists!");
>
> Is this even possible? (with using -version ..)
>
The following should do it:
debug {} else {
foo();
}
Ali