BIG GULP SUPREME Test Post


Test Post

This is a test post just checking how it looks

đŸ‘‹test h3

đŸ‘‹test h2

đŸ‘‹test h1

1
$echo checking
1
2
3
4
5
def fib(x):
if x <= 1:
return x
else:
return fib(x-1) + fib(x-2)