mirror of
https://github.com/autistic-symposium/master-algorithms-py.git
synced 2025-04-30 12:46:11 -04:00
15 lines
274 B
Python
15 lines
274 B
Python
#!/usr/bin/python
|
|
|
|
__author__ = "bt3"
|
|
|
|
'''
|
|
The doctest module automatically runs any statement beginning with >>>
|
|
and compares the following line with the output from the interpreter.
|
|
|
|
>>> 1 == 1
|
|
False
|
|
'''
|
|
|
|
if __name__ == '__main__':
|
|
import doctest
|
|
doctest.testmod() |