Initial commit

This commit is contained in:
eqb
2025-08-25 10:03:21 +00:00
commit a3546cec95
8 changed files with 122 additions and 0 deletions

7
greetings.py Normal file
View File

@@ -0,0 +1,7 @@
# greetings.py
# ------------
# By MWC contributors
my_name ="Chris"
greeting = "Hello, " + my_name
print(greeting)