Hi! This is where I’ll be posting about the latest code snippets I’m investigating or more general software design.

program main
  write(*,*) 'Hello, World!'
endprogram main
#include <stdio.h>

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