~iaz/+junk/gnustep-objc-osx

« back to all changes in this revision

Viewing changes to single/application.m

  • Committer: ivan.a.zorin at gmail
  • Date: 2011-11-16 16:27:57 UTC
  • Revision ID: ivan.a.zorin@gmail.com-20111116162757-uci949xe5xv0l7kc
gnustep-objc-osx: separate samples to single/ and tree/ - commit fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#import <Foundation/Foundation.h>
 
2
 
 
3
int main (int argc, const char * argv[]) {
 
4
        NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
 
5
        NSLog(@": Programming is fun.");
 
6
        [pool drain];
 
7
        return 0;
 
8
}
 
9