mirror of
https://github.com/tcsenpai/agenticSeek.git
synced 2025-06-06 11:05:26 +00:00
8 lines
109 B
Python
8 lines
109 B
Python
|
|
def print_hello():
|
|
hello = "Hello World"
|
|
print(hello)
|
|
|
|
if __name__ == "__main__":
|
|
print_hello()
|