(seconds)
| 8 | const readlineSync = require('readline-sync'); |
| 9 | |
| 10 | function sleep(seconds) { |
| 11 | return new Promise(resolve => setTimeout(resolve, seconds * 1000)); |
| 12 | } |
| 13 | |
| 14 | // Get the size of the terminal window: |
| 15 | // (We can't print to the last column on Windows without it adding a |