summaryrefslogtreecommitdiff
path: root/04_compile/hello.c
blob: 30c032e487c612f4c807dee0934ebc6fbaf85039 (plain)
1
2
3
4
5
6
7
#include <stdio.h>
#include <stdlib.h>

int main() {
  printf("Hello World\n");
  return EXIT_SUCCESS;
}