Files
mathgenerator/driver.py
2020-10-18 18:28:30 -05:00

13 lines
228 B
Python

# First test to run mathgenerator
# 19 Oct 2020
from mathgenerator import mathgen
problem, solution = mathgen.addition()
print(problem)
print(solution)
problem, solution = mathgen.binarytohex()
print(problem)
print(solution)