8 lines
113 B
C
8 lines
113 B
C
|
/* let's start with a K&R classic */
|
||
|
#include <stdio.h>
|
||
|
int main()
|
||
|
{
|
||
|
printf("hello, world\n");
|
||
|
return 0;
|
||
|
}
|