()
| 42 | hanoi(n-1, with_, from_, to_) |
| 43 | |
| 44 | def play(): |
| 45 | onkey(None,"space") |
| 46 | clear() |
| 47 | try: |
| 48 | hanoi(6, t1, t2, t3) |
| 49 | write("press STOP button to exit", |
| 50 | align="center", font=("Courier", 16, "bold")) |
| 51 | except Terminator: |
| 52 | pass # turtledemo user pressed STOP |
| 53 | |
| 54 | def main(): |
| 55 | global t1, t2, t3 |