Add Objective-C example

This commit is contained in:
Juraj Michalek
2013-05-03 20:45:19 +02:00
parent 2729fec687
commit 69209f4bee
7 changed files with 364 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
//
// main.m
// hellomuni
//
// Created by Juraj Michalek on 5/6/12.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[])
{
@autoreleasepool {
BOOL isItTrue = YES;
NSString *who = @"FI MUNI";
if (isItTrue) {
NSLog(@"Hello, %@!", who);
}
}
return 0;
}