trueberryless

Kristian Emil Takvam

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent lobortis nisi ante, nec tincidunt ligula mattis nec. Maecenas metus mauris, fermentum et vulputate ut, dapibus vel massa.

Blog

My Fourth Blog Post

This is an example blog post.

This is the content of my fourth example blog post.

My Second Blog Post

This is an example blog post.

This is the content of my second example blog post.

My Third Blog Post

This is an example blog post.

This is the content of my third example blog post.

My First Blog Post

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!");