Thanks for checking out my website!

I’ve written hello world countless times working on apps over the years.

Apparently, it was originally conceived as the example program from “A Tutorial Introduction to the Language B” by Brian Kernighan in 1972.

main( ) {
  extrn a, b, c;
  putchar(a); putchar(b); putchar(c); putchar(’!*n’);
}

a 'hell';
b 'o, w';
c 'orld';

Many years and languages later, it’s still the go to for writing your first program.