Micro-Blog
-
First Post
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.
(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)Wed Sep 11 2024 10:00:00 GMT+0000 (Coordinated Universal Time) Permalink