#import "Greeter.h"

@implementation Greeter

// START_HIGHLIGHT
- (void) sayHello {
// END_HIGHLIGHT
    NSLog(@"Hello, world.");
}
@end
