public
Description: A Hello World App in Cocoa for Mac OS X
Homepage: http://teabass.com/hello-world-in-cocoa/
Clone URL: git://github.com/andrew/hellococoa.git
andrew (author)
Fri Jun 13 02:33:30 -0700 2008
hellococoa / main.m
100644 15 lines (12 sloc) 0.261 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
// main.m
// HelloWorld
//
// Created by Andrew Nesbitt on 12/06/2008.
// Copyright __MyCompanyName__ 2008. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
 
int main(int argc, char *argv[])
{
    return NSApplicationMain(argc, (const char **) argv);
}