generated from mwc/lab_names
8 lines
117 B
Python
8 lines
117 B
Python
# greetings.py
|
|
# ------------
|
|
# By MWC contributors
|
|
|
|
my_name ="Chris"
|
|
greeting = "Hello, " + my_name
|
|
print(greeting)
|