commit 355cd830c89e4e9f4fa1aaff11cd850392b321de Author: Louis Chih-Ming Lee Date: Sun Jan 25 01:26:56 2026 +0100 test commit diff --git a/__main__.py b/__main__.py new file mode 100644 index 0000000..a15aa3f --- /dev/null +++ b/__main__.py @@ -0,0 +1,6 @@ +def foo(): + return("Hello World!") + +if __name__ == "__main__": + result = foo() + print(result)