Files
lab_names/greetings.py
2026-02-06 11:14:25 -05:00

8 lines
135 B
Python

# greetings.py
# ------------
# By MWC contributors
my_name ="Jayden"
greeting = "Hello, how is your day? " + my_name
print(greeting)