1 #import <Foundation/Foundation.h>
7 // (lldb) expr (int)[str compare:@"hello"]
9 // (lldb) expr (int)[str compare:@"world"]
11 // (lldb) expr (int)[@"" length]
16 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
18 NSString *str = [NSString stringWithCString:"hello" encoding:NSASCIIStringEncoding];
20 NSLog(@"String \"%@\" has length %lu", str, [str length]); // Set breakpoint here.