Skip to content

guide

print_guide

print_guide()

Print the program readme file

Source code in symdesign/utils/guide.py
249
250
251
252
def print_guide():
    """Print the program readme file"""
    with open(putils.readme_file, 'r') as f:
        print(f.read(), end='')