generated from mwc/lab_names
8 lines
135 B
Python
8 lines
135 B
Python
# greetings.py
|
|
# ------------
|
|
# By MWC contributors
|
|
|
|
my_name ="Jayden"
|
|
greeting = "Hello, how is your day? " + my_name
|
|
print(greeting)
|