This is an example blog post.

This is the content of my first example blog post. Just trying to see how this looks on my webpage. Not much to look at here. A “work in progress” as they say.

Features

  • Yes!
  • No!
  • Maybe!

Python Code:

def print_asterisk_tree(height):
    for i in range(1, height + 1):
        spaces = ' ' * (height - i)
        asterisks = '*' * (2 * i - 1)
        print(spaces + asterisks)

# Example usage:
print_asterisk_tree(5)

Javascript Code:

console.log("Hello, world!");