main() return code.

2015-08-21 Thread Tony via Digitalmars-d-learn
Why is it acceptable to specify main as returning void (in addition to returning int)?

Re: main() return code.

2015-08-21 Thread Ali Çehreli via Digitalmars-d-learn
On 08/21/2015 01:49 AM, Tony wrote: Why is it acceptable to specify main as returning void (in addition to returning int)? void in that context means automatically return 0 if main() exits without exception and non-zero if it exits with exception. Ali