casio-calculator/utils.py

6 lines
105 B
Python
Raw Normal View History

2024-02-17 19:18:01 -04:00
def man(func):
"""
Prints the manual for the function.
:param func: function
"""
print(func.__doc__)