jehanne/qa/lib/newlib/000-hello.c

8 lines
113 B
C
Raw Normal View History

2017-04-22 00:46:55 +02:00
/* let's start with a K&R classic */
#include <stdio.h>
int main()
{
printf("hello, world\n");
return 0;
}