6 lines
96 B
Python
6 lines
96 B
Python
def main():
|
|
print('I am the main print. Hi, dude!')
|
|
|
|
if __name__ == '__main__':
|
|
main()
|
|
|