summaryrefslogtreecommitdiff
path: root/tests/projects/objc/modulemap/src/hello.m
blob: b22f844f2246ec7581580b6f6385aa918ec0cc08 (plain)
1
2
3
4
5
6
7
8
9
10
#import "hello.h"

@implementation Hello

+ (void)say:(NSString*)s
{
    NSLog(@"%@\n", s);
}

@end