The biggest issue in Dlang

Daniel Kozak kozzi11 at gmail.com
Thu Sep 19 20:50:30 UTC 2019


auto main()
{
     return int(0);
}

for some reasons does not work WOW :-D

this works ok:
void main()
{
     return other();
}

auto other()
{
     return;
}

so I believe even this should work:

auto main()
{
     return;
}




More information about the Digitalmars-d-learn mailing list