Initial commit

This commit is contained in:
2026-02-03 00:07:30 +00:00
commit 07e5b6b5d0
9 changed files with 125 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)