//
//  main.m
//
//  Created by RJBF on 26/03/2026.
//  Copyright . All rights reserved.
//

#import <UIKit/UIKit.h>

int main(int argc, char *argv[]) {
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    int retVal = UIApplicationMain(argc, argv, nil, @"WDAppDelegate");
    [pool release];
    return retVal;
}
