# trivial.py
# Steve Marschner (srm2)
# Lecture demo: A trivial class with nothing in the class definition
# You can still put things in the class, make instances of it, and
# put things in the instances.

class Example(object):
    """The simplest possible class."""
    pass