18 lines
316 B
Mathematica
18 lines
316 B
Mathematica
![]() |
//
|
||
|
// 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;
|
||
|
}
|