15 lines
258 B
Objective-C
Executable File
15 lines
258 B
Objective-C
Executable File
//
|
|
// main.m
|
|
// iLyrics
|
|
//
|
|
// Created by Kim Wittenburg on 10.06.12.
|
|
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
return NSApplicationMain(argc, (const char **)argv);
|
|
}
|