hello.py (232B)
1 #!/usr/bin/env python3 2 # File : hello.py 3 # Description: Simple Python code with function 4 # Copyright 2022 Harvard University. All Rights Reserved. 5 6 7 def main(): 8 print('Hello CS107') 9 10 11 if __name__ == "__main__": 12 main()