mirror of
https://github.com/dsward2/macSVG.git
synced 2026-03-02 18:23:58 +01:00
18 lines
321 B
Objective-C
Executable File
18 lines
321 B
Objective-C
Executable File
//
|
|
// main.m
|
|
// InterfaceTest
|
|
//
|
|
// Created by Robbie Hanson on 10/15/10.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
@autoreleasepool {
|
|
int retVal = UIApplicationMain(argc, argv, nil, nil);
|
|
return retVal;
|
|
}
|
|
}
|