14 lines
480 B
Objective-C
14 lines
480 B
Objective-C
/*******************************************************************************
|
|
main.m - <http://github.com/rentzsch/MarkdownLive>
|
|
Copyright (c) 2006-2011 Jonathan 'Wolf' Rentzsch: <http://rentzsch.com>
|
|
Some rights reserved: <http://opensource.org/licenses/mit-license.php>
|
|
|
|
***************************************************************************/
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
return NSApplicationMain(argc, (const char **) argv);
|
|
}
|