from Hello import hello

print("Hello from the main program")
hello()
print("Bye bye!")
Example #2
0
def main():
    hello()
Example #3
0
from Hello import hello

hello()