#import <Foundation/Foundation.h>

int main() {
	NSAutoreleasePool *pool = [NSAutoreleasePool new];
	enum direction {north, south = 5, west, east};
	int cur = south;
	NSLog(@"%d ", cur);
	NSLog(@"%d ", north);
	NSLog(@"%d", west);
	[pool drain];
	return 0;
}


