www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - main() return code.

reply "Tony" <tonytdominguez aol.com> writes:
Why is it acceptable to specify main as returning void (in 
addition to returning int)?
Aug 21 2015
parent =?UTF-8?B?QWxpIMOHZWhyZWxp?= <acehreli yahoo.com> writes:
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
Aug 21 2015