Files
lab_names/greetings.py
2025-08-26 22:03:09 +00:00

8 lines
117 B
Python

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