main.py 374 Bytes
from util import play, play_with_voice

HELLO_SCRIPT = "Welcome to your first day at Caltech!"
ADVICE_SCRIPT = "My most important advice is \"go to office hours, and try to get to know your professors\"."
# play(ADVICE_SCRIPT)


which = input("What do you want to do? ")
if which == "speak":
    play_with_voice(HELLO_SCRIPT, "Joanna")

print(1.1 + 5)
x = print(5)
print(x)