7 lines
80 B
Python
7 lines
80 B
Python
import os
|
|
import time
|
|
|
|
|
|
def main():
|
|
print("Hello, world!")
|
|
time.sleep(5) |