Skip to content

HanoiInitial

Repository source: HanoiInitial

Other languages

See (Cxx), (Python)

Question

If you have a question about this example, please use the VTK Discourse Forum

Code

HanoiInitial.py

#!/usr/bin/env python3

"""
HanoiInitial

Note: Make sure Hanoi.py is in the same directory as this program.
"""

import Hanoi


def main():
    Hanoi.gv.configuration = 1
    Hanoi.hanoi()


if __name__ == '__main__':
    main()