summaryrefslogtreecommitdiff
path: root/hello.py
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2025-03-06 13:21:38 +0100
committerYuval Adam <_@yuv.al>2025-03-06 13:21:38 +0100
commit9ee5a1d4273e5f0166b3f44bd6b040602613f140 (patch)
treefc00c56df9603fcdc16c6f7b565367b2fef0313a /hello.py
parent0f6e7ab3d2d51afd5b1c8f7a88843bf9a4f0a9b2 (diff)
Initial project
Diffstat (limited to 'hello.py')
-rw-r--r--hello.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/hello.py b/hello.py
new file mode 100644
index 0000000..6f29093
--- /dev/null
+++ b/hello.py
@@ -0,0 +1,6 @@
+def main():
+ print("Hello from strangeloop!")
+
+
+if __name__ == "__main__":
+ main()