challenge Hello, world!

「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;
}

Index

Feed

Other

Link

Pathtraq

loading...