HelloWorld

CのHelloWorld
{{{

#include <stdio.h>

int main(void) {
  printf("Hello World\n"); // Yay, this prints a cute greeting!

return 0;
}

}}}