base-runtime/tests/resources/hello-world/hello.c
2017-04-27 14:08:51 +02:00

8 lines
82 B
C

#include <stdio.h>
int
main (void)
{
printf ("Hello, world!\n");
return 0;
}