025771460c
^KT-61259
11 lines
228 B
Objective-C
Vendored
11 lines
228 B
Objective-C
Vendored
#import <Foundation/Foundation.h>
|
|
|
|
NSString* foo1(int x) {
|
|
return [NSString stringWithFormat:@"%d", x];
|
|
}
|
|
|
|
NSArray* foo2(int x) {
|
|
NSValue* xx = @(x);
|
|
NSString* s = @"zzz";
|
|
return [NSArray arrayWithObjects: xx, s, nil];
|
|
} |