12 lines
104 B
C
12 lines
104 B
C
/* HELLO.C -- Hello, world */
|
|
|
|
#include <stdio.h>
|
|
|
|
main()
|
|
{
|
|
printf("Hello, world\n");
|
|
}
|
|
|
|
|
|
|
|
|