B
blackneos940
Guest
So this beta of a Program I've been working on, a text-based RPG, A Cold Day in Hell, seems to not run at ALL.....
It only runs when I remove the function line..... (And of course, un-indent the following lines.....
)
Why does it end before it begins.....?
I put a "print" test BEFORE the function, and it ran fine..... Hmmmmm..... Anyway, thank you for the help.....
Oh yeah..... What's your favorite thing to eat for Thanksgiving.....? 


Code:
def begin():
#We get the name of the Main Character here
name = input("Type the name of your character here: ")
confirmation = input ("Ah, so your name is", name, "is that right?\n>>> (Y/N)")
if confirmation == "Y" or confirmation == "y":
print ("Okay. Type the name of your home town:\n>>> ")
elif confirmation == "N" or confirmation == "n":
print ("Re-enter the name of your character.")
begin(start)
Why does it end before it begins.....?


