()
| 181 | onkey(bye, "space") |
| 182 | |
| 183 | def main(): |
| 184 | getscreen().clearscreen() |
| 185 | ht(); penup() |
| 186 | init_shelf() |
| 187 | show_text(instructions1) |
| 188 | show_text(instructions2, line=1) |
| 189 | enable_keys() |
| 190 | listen() |
| 191 | return "EVENTLOOP" |
| 192 | |
| 193 | instructions1 = "press i for insertion sort, s for selection sort, q for quicksort" |
| 194 | instructions2 = "spacebar to quit, r to randomize" |
no test coverage detected
searching dependent graphs…