mirror of
https://github.com/ysoftdevs/cpp-examples.git
synced 2026-01-13 07:20:35 +01:00
24 lines
401 B
Objective-C
24 lines
401 B
Objective-C
//
|
|
// 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;
|
|
}
|
|
|