Skip to content

Instantly share code, notes, and snippets.

@pbalduino
Created May 25, 2012 14:15
Show Gist options
  • Save pbalduino/2788362 to your computer and use it in GitHub Desktop.
Save pbalduino/2788362 to your computer and use it in GitHub Desktop.
#import "FirstClass.h"
@implementation FirstClass
-(NSString *) meh;
{
NSLog(@"meh");
return @"meh";
}
-(NSString *) foo: (int)bar;
{
return bar < 0 ? @"negative" : @"positive";
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment