Hello World

Just a quick introductory post to kick things off.

Starting off this blog with a simple post. More styling to come during the coming days.

Side note: here's the Factorial function in F#:

let rec factorial n =
match n with
| 0 -> 1
| _ -> n * factorial (n - 1)