1 /* Nothing fancy here, just checking that we can compile hello world */ 2 #include <stdio.h> 3 4 int main(void) { 5 printf("Hello World!\n"); 6 return 0; 7 } 8