/*
* Description: The traditional first program when learning C.
* Author: Delvin Defoe (and many others before me).
*/

#include <stdio.h>

int main(int argc, char* argv[]) {
     printf("Hello, World!\n");
}