Re: Learning to program Cocoa
Re: Learning to program Cocoa
- Subject: Re: Learning to program Cocoa
- From: Finlay Dobbie <email@hidden>
- Date: Tue, 28 Aug 2001 18:26:31 +0100
On Tuesday, August 28, 2001, at 04:33 pm, Ondra Cada wrote:
exit(0); // _E_nsure the process exit status is 0
return 0; // ...and make main fit the ANSI spec.
That's a bit redundant isn't it? exit with a return status of 0, and
then exit with a return status of 0 (although the second one is never
called)?
-- Finlay