Skip to content
Snippets Groups Projects
hello.py 120 B
Newer Older
#!/usr/bin/python3


def hello(s: str) -> None:
    print(f"Hello {s}")


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