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