Je ne peux pas comprendre pourquoi je reçois
use of undeclared identifier _cmd did you mean rcmd
sur la ligne où se trouve NSAssert.
#import <Foundation/Foundation.h>
int main (int argc, const char * argv[])
{
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int x = 10;
NSAssert(x > 11, @"x should be greater than %d", x);
[pool drain];
return 0;
}