18 lines
316 B
Objective-C
18 lines
316 B
Objective-C
//
|
|
// main.m
|
|
// ios-deploy-demo
|
|
//
|
|
// Created by shazron on 7/16/15.
|
|
// Copyright (c) 2015 PhoneGap. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
int main(int argc, const char * argv[]) {
|
|
@autoreleasepool {
|
|
// insert code here...
|
|
NSLog(@"Hello, World!");
|
|
}
|
|
return 0;
|
|
}
|