cs107-lecture-examples

Example codes used during Harvard CS107 lectures
git clone https://git.0xfab.ch/cs107-lecture-examples.git
Log | Files | Refs | README | LICENSE

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()