Here is the code we wrote today:

/*
 * to compile and run:
 *    gcc -Wall -std=gnu99 -o hello hello.c
 *    ./hello
 */

#include 

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