1 2 3 4 5 6 7 8 9
#import "test.h" #import <Foundation/Foundation.h> int add(int a, int b) { NSLog(@"add(%d, %d)", a, b); return a + b; }