When you compile using `dmd` compiler you will often get `.exe` and `.obj` file. I would like to only produce `.exe` file: ``` dmd -release -Ldatatypes.lib example.d ``` I tried dmd option: ``` -o- do not write object file ``` But it also prevents production of `.exe` file. Essentially producing nothing as a result.