/*
 *     Generated by the NeXT Interface Builder.
 */

#import <stdlib.h>
#import <appkit/Application.h>

void main(int argc, char *argv[])
{
    long srandom();
    int getpid();
    
    NXApp = [Application new];
    [NXApp loadNibSection:"Fortune.nib" owner:NXApp];
    srandom(getpid());
    [NXApp activateSelf:YES];
    [NXApp run];
    [NXApp free];
    exit(0);
}
