RasptestPi/helloworld.c

6 lines
77 B
C
Raw Normal View History

2019-01-06 19:35:41 +00:00
#include <stdio.h>
int main() {
printf("Hello World\n");
return 0;
}