On 1/20/22 9:07 PM, 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 ..)
debug
is like a version
block.
debug {} else {
// code that runs when -debug is not present
}
-Steve