7 lines
88 B
Python
7 lines
88 B
Python
def main():
|
|
print("Hello from experiment!")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|