digitalmars.D.learn - The biggest issue in Dlang
- Daniel Kozak (19/19) Sep 19 2019 auto main()
 - Daniel Kozak (4/23) Sep 19 2019 I am aware of https://dlang.org/spec/function.html#main, just
 
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;
}
 Sep 19 2019
On Thursday, 19 September 2019 at 20:50:30 UTC, Daniel Kozak 
wrote:
 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;
 }
I am aware of https://dlang.org/spec/function.html#main, just 
seems wierd auto does not work too
 Sep 19 2019








 
 
 
 Daniel Kozak <kozzi11 gmail.com>