#import <Foundation/Foundation.h>

int main (int argc, const char * argv[]) {
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
	
    NSLog( [[[NSBundle mainBundle] executablePath] lastPathComponent] );
	
    [pool drain];
    return 0;
}
