#import "Greeter.h"

@implementation Greeter

- (void) sayHello {
    NSLog(@"Hello, %@.", greetee);
}

@synthesize greetee;

@end
