mirror of
https://github.com/dkhamsing/open-source-ios-apps.git
synced 2024-12-18 15:11:36 +03:00
8 lines
106 B
Objective-C
8 lines
106 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@implementation Hello
|
|
NSString *hi() {
|
|
return @"Hello world";
|
|
}
|
|
@end
|