summaryrefslogtreecommitdiff
path: root/tests/projects/objc/iosapp_with_framework/src/framework/test.m
blob: 6be082bd849e15418ef9420b63b52de3fb96eaa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "test.h"

int add(int a, int b)
{
    return a + b;
}

@implementation Test

- (void)hello {
    NSLog(@"hello xmake!");
}

@end