Files
Foundry/templates/python/foo_bar/__main__.py
T

10 lines
119 B
Python

from foo_bar import hello_world
def main() -> None:
print(hello_world())
if __name__ == "__main__":
main()