Source code for AutomateTheBoringStuffWithPython.Chapter02.P08_busywork
"""Busy work
This program adds numbers 0 to 100.
"""
# If P08_busywork.py is run (instead of imported as a module), call
# the main() function:
if __name__ == '__main__':
main()