Skip to content

Instantly share code, notes, and snippets.

@ealeksandrov
Created November 8, 2014 10:27
Show Gist options
  • Save ealeksandrov/f748c9299e10271768ce to your computer and use it in GitHub Desktop.
Save ealeksandrov/f748c9299e10271768ce to your computer and use it in GitHub Desktop.
Objective-C Minimalism
#!/usr/bin/env objc-run
@import Foundation;
@implementation Hello : NSObject
- (void) sayHelloTo:name
{
printf("Hello %s, my address is %p\n", [name UTF8String], self);
}
@end
int main ()
{
id hello = [Hello new];
[hello sayHelloTo:@"sunshine"];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment