10 lines
395 B
Python
10 lines
395 B
Python
##############################################################
|
|
# MIGRATION NOTE: wow this is ass. you can tell this is from #
|
|
# when i was learning programming #
|
|
##############################################################
|
|
|
|
def room1():
|
|
print("You have arrived at [Room 1]")
|
|
name = input("What is your name?\n> ")
|
|
print("Hello", name, "Welcome to room 1")
|
|
room1() |