mirror of
https://github.com/Misterio77/Foundry.git
synced 2026-08-29 18:14:15 -05:00
10 lines
119 B
Python
10 lines
119 B
Python
from foo_bar import hello_world
|
|
|
|
|
|
def main() -> None:
|
|
print(hello_world())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|