Re: Xcode -> textbook programming
Re: Xcode -> textbook programming
- Subject: Re: Xcode -> textbook programming
- From: James Duncan Davidson <email@hidden>
- Date: Fri, 14 Nov 2003 00:15:06 -0800
On Nov 13, 2003, at 9:55 PM, Jesse Carpenter wrote:
> I have seen a few simples programs that do not use Aqua interface, but
> when I try to imitate them I cannot get my to function.
It's all in the way that you start your project. File-->New Project,
then scroll to the bottom of the list and select "Standard Tool" under
the Tools group. This will give you a project with a main.c file that
contains the following:
#include <stdio.h>
int main (int argc, const char * argv[]) {
// insert code here...
printf("Hello, World!\n");
return 0;
}
From here, you're ready to go to town.
[demime 0.98b removed an attachment of type application/pkcs7-signature which had a name of smime.p7s]
_______________________________________________
xcode-users mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/xcode-users
Do not post admin requests to the list. They will be ignored.