command line template in cocoa #import <stdio.h>
int main( int argc, const char *argv[] ) {
printf( "hello world\n" );
return 0;
}
I simply have to run this program in xcode..which template should i use.
basically i have to create a character based application.
Please tell.
I need both .h and .m files. |