23 lines
327 B
Objective-C
23 lines
327 B
Objective-C
//
|
|
// main.m
|
|
// DHSendMIDI
|
|
//
|
|
// Created by Douglas Heriot on 23/01/13.
|
|
// Copyright (c) 2013 Douglas Heriot. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
int main(int argc, const char * argv[])
|
|
{
|
|
|
|
@autoreleasepool {
|
|
|
|
// insert code here...
|
|
NSLog(@"Hello, World!");
|
|
|
|
}
|
|
return 0;
|
|
}
|
|
|