7 lines
109 B
Objective-C
7 lines
109 B
Objective-C
#import <stdio.h>
|
|
|
|
int main( int argc, const char *argv[] ) {
|
|
printf( "hello world\n" );
|
|
return 0;
|
|
}
|