1
0
mirror of https://github.com/dkhamsing/open-source-ios-apps.git synced 2025-01-28 01:09:20 +01:00
2016-02-22 09:13:29 -08:00

8 lines
106 B
Objective-C

#import <Foundation/Foundation.h>
@implementation Hello
NSString *hi() {
return @"Hello world";
}
@end