Hello, world!
Posted feedbacks - Objective-C
1 2 3 4 5 6 7 | #include <stdio.h>
int main ()
{
printf("Hello, world!\n");
return 0;
}
|
1 2 3 4 5 6 7 | #import <Foundation/Foundation.h>
int main ()
{
NSLog(@"Hello, world!\n");
return 0;
}
|




にしお
#3358()
Rating0/0=0.00
[ reply ]