NextFloor

すきな物やモノに囲まれて生きていく!

Objective-c

「helloworld」

/* コメントです */ // こちらも。 #import <Foundation/Foundation.h> @interface helloWorld : NSObject - (void)helloworld; @end @implementation helloWorld - (void)helloworld { printf("helloworld\n"); } @end int main(int argc, char *argv[]) { @autoreleasepool { helloW</foundation/foundation.h>…