On 2014-01-10 12:21, tivadj wrote:
> To resolve the problem (unresolved _deh_beg/_deh_end when linking), put
> the 'main' declaration into the D library. As below
>
> void main(string[])
> {
> }
You don't need any arguments for the "main" function if you don't need
them. It's enough with:
void main () { }
--
/Jacob Carlborg