Atheridis' Page

First Post

From: Georgios Atheridis
Date: 2023-04-01

There's not much going on here, I am just trying out this feature to see how well it works. I would also like to make sure everything works correctly, like the new lines and all.

Hopefully it's good!

def hello(name: str) -> str:
    msg = f"Hello, world! Your name is {name}"
    return msg

if __name__ == "__main__":
    hello("atheridis")