This commit is contained in:
sean
2026-02-09 23:18:05 -05:00
parent 07e5b6b5d0
commit e18aef5ee2
5 changed files with 39 additions and 3 deletions

View File

@@ -2,6 +2,6 @@
# ------------
# By MWC contributors
my_name ="Chris"
my_name = input("What is your name?")
greeting = "Hello, " + my_name
print(greeting)