""" foo.py An example of a small python class. The corresponding C is in ./foo.c $ python foo.py Jim Mahoney | cs.bennington.college | MIT License | March 2021 """ class Foo: def __init__(self, bar): self.bar = bar def __str__(self): return f"" def main(): foo = Foo(10) print(foo) main()