Hello World

2022.05.29

This is a sample hello world program in C.

#include <stdio.h>

int main() {
    printf("Hello, world!\n");
    return 0;
}

That's it, folks!