from Hello import hello print("Hello from the main program") hello() print("Bye bye!")
def main(): hello()
from Hello import hello hello()