Hello world! I think I’ll leave this up on the final site as a shrine to the gods of programming.

#include "stdio.h"
#include "stdlib.h"

int main(int argc, char *argv[]) {
  printf("Hello world!");
  return EXIT_SUCCESS;
}