1 2 3 4 5 6 7 8 9 10
#import "hello.h" @implementation Hello + (void)say:(NSString*)s { NSLog(@"%@\n", s); } @end