# Exploring Languages with Interpreters and Functional Programming
# Copyright (C) 2018, H. Conrad Cunningham

# Test of modular programming example from Chapter 2

#234567890123456789012345678901234567890123456789012345678901234567890

# 2018-08-21: Developed prototype for Python modular example 2

# python3 CountingModTest2.py

import CountingMod

CountingMod.count = 10
CountingMod.maxc  = 20
CountingMod.counter()

