On Sat, Jan 24, 2015 at 06:15:29PM +0000, tcak via Digitalmars-d-learn wrote:
> Is there any way to run only unittest codes, and ignore main function?
> 
> DMD is running both of them when I use -unittest.

version(unittest)
{
        void main() {}
}
else
{
        void main() { /* real main code here */ }
}


T

-- 
The volume of a pizza of thickness a and radius z can be described by
the following formula: pi zz a. -- Wouter Verhelst

Reply via email to