added tennessee chapter
This commit is contained in:
parent
9f4183e0f3
commit
9bcc84a9f1
@ -59,7 +59,6 @@ function main()
|
||||
|
||||
print("Here are your options. \n")
|
||||
print("Option 1 - Go to your local Safeway. \n")
|
||||
main()
|
||||
print("Option 2 - Go to the closest gas station. \n")
|
||||
choice = input("Choose an option by pressing its number: ")
|
||||
|
||||
@ -76,5 +75,22 @@ function main()
|
||||
print(wrong_key_error)
|
||||
end
|
||||
|
||||
print("Here are your options. \n")
|
||||
print("Option 1 - Attempt to hitch a ride with a trucker. \n")
|
||||
print("Option 2 - Purchase a plane ticket to Polaski, Tennessee. \n")
|
||||
choice = input("Choose an option by pressing its number: ")
|
||||
|
||||
if choice == "1"
|
||||
print(tn_option1outcome_text)
|
||||
elseif choice == "2"
|
||||
print(tn_option2outcome_text)
|
||||
|
||||
elseif choice == "q"
|
||||
exit()
|
||||
|
||||
else
|
||||
print(wrong_key_error)
|
||||
end
|
||||
|
||||
end
|
||||
main()
|
Loading…
x
Reference in New Issue
Block a user