My favorites | Sign in
Project Home Downloads Wiki Issues
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions

Issue 1 attachment: MyClient.m (419 bytes)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#import "Client.h"

@interface Main : NSObject { }
@end

@implementation Main
+(void)main {
NSString* mystring = @"Hello world !";
NSLog(@"mystring : %s",mystring );

Client* myClient;
myClient = [Client new];

[myClient setCode : 1212];
[myClient setName : @"CHARRIERE"];
[myClient print];
[myClient release];

}
@end
Powered by Google Project Hosting