Files

9 lines
110 B
C

/* a simple helloworld test */
#include <stdio.h>
int main() {
printf("Hello world\n");
return 0;
}