The content of this first micro-blog style post is not so interesting. It is merely a test to see if math expressions and code work. However, it is left as a historical tidbit to potentially make you chuckle. Have a nice day. :sweat_smile: (totally not testing emojis)
Here is my favorite formula:
And here is some OCaml code:
(* fibonacci function *)
let fib n =
if n <= 1 then
n
else
fib (n-1) + fib (n-2)