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

module_1.py (143B)


      1 class Foo:
      2     def __init__(self, a, b):
      3         self.a = a
      4         self.b = b
      5 
      6 
      7 def foo():
      8     return "cs107_package.subpkg_1.module_1.foo()"