Hello World! šŸŒŽ

This is my first blog post! Iā€™m Alex Lu, and Iā€™m excited to learn more about how to build and develop my blog.

Have some code! šŸ’»

Ayo is that a recursive function?

def fibo(n):
    if n == 1:
        return 0
    if n == 2:
        return 1
    return fibo(n-1) + fibo(n-2)

print(fibo(10)) # prints 34

That was sick!

Thanks for visiting šŸ„³

Have a cookie šŸŖ