15 lines
248 B
Objective-C
15 lines
248 B
Objective-C
//
|
|
// main.m
|
|
// ExampleAppMac
|
|
//
|
|
// Created by Thong Nguyen on 02/02/2014.
|
|
// Copyright (c) 2014 Thong Nguyen. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
int main(int argc, const char * argv[])
|
|
{
|
|
return NSApplicationMain(argc, argv);
|
|
}
|