()
| 293 | } |
| 294 | |
| 295 | func clear() { |
| 296 | // on windows we'd do cmd := exec.Command("cmd", "/c", "cls"); unfortunately the draw speed is so |
| 297 | // slow that the animation is very jerky, flashy, and painful to look at. |
| 298 | cmd := exec.Command("clear") |
| 299 | cmd.Stdout = os.Stdout |
| 300 | _ = cmd.Run() |
| 301 | } |
| 302 | |
| 303 | var thankYou = ` |
| 304 | _ _ |
no test coverage detected