aboutsummaryrefslogtreecommitdiff
path: root/schroedinger/schroedinger.py
diff options
context:
space:
mode:
authorTim Suhling <tim@suhling.com>2024-07-12 11:20:33 +0200
committerTim Suhling <tim@suhling.com>2024-07-12 11:20:33 +0200
commitd384ff1da5c98a3c94e5ed59ae7496c2e64846b8 (patch)
tree5c49838650af2e0c91334c816d6f41885067db42 /schroedinger/schroedinger.py
parentd6a1520bb5f8b74f966a79ff1c5b49c0931c34e1 (diff)
Set up documentation
Diffstat (limited to 'schroedinger/schroedinger.py')
-rw-r--r--schroedinger/schroedinger.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/schroedinger/schroedinger.py b/schroedinger/schroedinger.py
new file mode 100644
index 0000000..c13a881
--- /dev/null
+++ b/schroedinger/schroedinger.py
@@ -0,0 +1,15 @@
+
+def hello():
+ """
+ This is a description :)
+ :return: None
+ """
+ print('Hello')
+
+
+def main():
+ hello()
+
+
+if __name__ == "__main__":
+ main()