()
| 187 | onkey(bye, "space") |
| 188 | |
| 189 | def main(): |
| 190 | getscreen().clearscreen() |
| 191 | ht(); penup() |
| 192 | init_shelf() |
| 193 | show_text(instructions1) |
| 194 | show_text(instructions2, line=1) |
| 195 | enable_keys() |
| 196 | listen() |
| 197 | return "EVENTLOOP" |
| 198 | |
| 199 | instructions1 = "press i for insertion sort, s for selection sort, q for quicksort" |
| 200 | instructions2 = "spacebar to quit, r to randomize" |
no test coverage detected