aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhongheng Liu <z.liu@outlook.com.gr>2024-10-08 11:29:01 +0000
committerZhongheng Liu <z.liu@outlook.com.gr>2024-10-08 11:29:01 +0000
commita530839efcf168edc2558e3faa2395845deae474 (patch)
tree9c8580f9124461bd41ec5a93c6211d59ba4f7dc6
parent26bbb4d9f6b5ce70756c7e986371191c02ecc6aa (diff)
downloadcs-y13-a530839efcf168edc2558e3faa2395845deae474.tar.gz
cs-y13-a530839efcf168edc2558e3faa2395845deae474.tar.bz2
cs-y13-a530839efcf168edc2558e3faa2395845deae474.zip
feat: hello world
-rw-r--r--main.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/main.py b/main.py
new file mode 100644
index 0000000..5b60048
--- /dev/null
+++ b/main.py
@@ -0,0 +1,4 @@
+def main():
+ print("Hello world")
+if __name__ == "__main__":
+ main() \ No newline at end of file