Created
September 13, 2012 09:15
-
-
Save learning/3713111 to your computer and use it in GitHub Desktop.
你的文件
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification | |
{ | |
// Insert code here to initialize your application | |
SHFoo *foo = [SHFoo alloc]; | |
[foo say: @"Yes" whosay: @"Here is Shawn huang."]; | |
Boolean b = true; | |
BOOL b2 = YES; | |
b = !b2; | |
NSLog(@"Bool: %d %d", b, b2); | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment