Initial commit

This commit is contained in:
2024-02-03 23:58:49 +00:00
commit 6157082763
8 changed files with 116 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)