RosettaCodeData/Task/Program-name/Objective-C/program-name-1.m

17 lines
295 B
Mathematica
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
#import <Foundation/Foundation.h>
int main(int argc, char **argv) {
2014-04-02 16:56:35 +00:00
@autoreleasepool {
2013-04-10 23:57:08 -07:00
2014-04-02 16:56:35 +00:00
char *program = argv[0];
printf("Program: %s\n", program);
2013-04-10 23:57:08 -07:00
2014-04-02 16:56:35 +00:00
// Alternatively:
NSString *program2 = [[NSProcessInfo processInfo] processName];
NSLog(@"Program: %@\n", program2);
2013-04-10 23:57:08 -07:00
2014-04-02 16:56:35 +00:00
}
2013-04-10 23:57:08 -07:00
return 0;
}