#import <Cocoa/Cocoa.h>

@interface Greeter : NSObject {
// START_HIGHLIGHT
    NSString *greetee;
// END_HIGHLIGHT
}
- (void) sayHello;

@end
