Hello world!

Traditionally this title should be used when starting something new, when talking about anything related to programming. I won't be different in this regard.

This is a reboot of my technical blog, which was hosted on github pages. More info soon. This is just hello.

1#include <stdio.h>
2
3int main() {
4	printf("Hello!\n");
5	return 0;
6}
1package main
2
3import "fmt"
4
5func main() {
6	fmt.Println("Hello!")
7}