Skip to content

Instantly share code, notes, and snippets.

@tedheich
Created March 7, 2011 11:31
Show Gist options
  • Save tedheich/858397 to your computer and use it in GitHub Desktop.
Save tedheich/858397 to your computer and use it in GitHub Desktop.
Simplistic Hello World program in objective C
#include <Foundation/Foundation.h>
@interface Hi:NSObject {}
- (void) hi;
@end
@implementation Hi
- (void) hi {
NSLog(@"Hi world\n");
}
@end
int main(void) {
Hi *obj = [[Hi alloc] init];
[obj hi];
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment