from Hello import hello

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

hello()